html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    background-color: #f8f9fa;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 70px;
}

.hero {
    background-color: #eb0000;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.main-content .container {
    padding: 30px;
}

.btn-intrepid {
    background-color: #eb0000;
    color: #fff;
    transition: background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1), border .2s cubic-bezier(.4, 0, .2, 1);
}

.btn-intrepid:hover {
    background-color: #c80000;
    color: #fff;
}

.btn-intrepid .icon {
    color: #fff;
    fill: #fff;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    text-align: center;
}

/* Release Notes section */
.subscribe-wrapper {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.subscribe-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.subscribe-checkbox {
    cursor: pointer;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #eb0000;
}

.subscribe-label {
    cursor: pointer;
    font-size: 0.875rem;
    color: #444;
    margin: 0;
}

.subscribe-form {
    margin-top: 10px;
}

.subscribe-email-input {
    font-family: "Montserrat", sans-serif;
    font-size: 0.875rem;
    border-color: #dee2e6;
}

.subscribe-email-input:focus {
    border-color: #eb0000;
    box-shadow: 0 0 0 0.2rem rgba(235, 0, 0, 0.15);
}

.subscribe-feedback {
    font-size: 0.8rem;
    margin-top: 6px;
    padding: 4px 0;
}

.subscribe-feedback--error {
    color: #dc3545;
}

.subscribe-feedback--success {
    color: #198754;
}

.subscribe-confirmed {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #198754;
    font-weight: 600;
    flex-wrap: wrap;
}

.subscribe-confirmed svg {
    flex-shrink: 0;
}

.unsubscribe-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    margin-left: 4px;
    font-family: "Montserrat", sans-serif;
}

.unsubscribe-btn:hover {
    color: #eb0000;
}

.release-search-input {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
}

.release-search-input:focus {
    border-color: #eb0000;
    box-shadow: 0 0 0 0.2rem rgba(235, 0, 0, 0.15);
}

.release-entry {
    border-left: 3px solid #eb0000;
    padding: 12px 16px;
    margin-bottom: 16px;
    background-color: #fff;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}

.release-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.release-version {
    font-weight: 700;
    font-size: 1rem;
    color: #eb0000;
}

.release-date {
    font-size: 0.85rem;
    color: #666;
}

.release-changes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.release-change {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.9rem;
}

.release-change-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.release-link {
    font-size: 0.8rem;
    color: #eb0000;
    text-decoration: none;
    font-weight: 600;
}

.release-link:hover {
    text-decoration: underline;
    color: #c80000;
}

.badge-release-feature {
    background-color: #198754;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-release-deprecation {
    background-color: #ffc107;
    color: #000;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-release-breaking {
    background-color: #dc3545;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-release-minor {
    background-color: #0dcaf0;
    color: #000;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-release-bugfix {
    background-color: #6c757d;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}