* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #c40000;
    --red-bright: #e60000;
    --green: #00cc66;
    --bg: #080808;
    --surface: #121212;
    --surface-hover: #1a1a1a;
    --border: #252525;
    --text: #e0e0e0;
    --text-dim: #666;
    --text-muted: #444;
    --gold: #d4a017;
    --silver: #a0a0a0;
    --bronze: #b87333;
    --radius: 8px;
    --radius-lg: 14px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.noise {
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 40px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 40px 0 24px;
    position: relative;
}

header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--red);
    margin: 20px auto 0;
    border-radius: 2px;
}

.logo {
    font-family: 'Metal Mania', cursive;
    font-size: 4.2rem;
    color: var(--red);
    text-shadow: 0 0 60px rgba(196, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
    line-height: 1;
    user-select: none;
}

nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.tab {
    padding: 9px 22px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-dim);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tab:hover {
    border-color: var(--red);
    color: var(--text);
    background: var(--surface-hover);
}

.tab.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.tab.active i {
    color: #fff;
}

.whatsnew-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    writing-mode: vertical-rl;
    padding: 16px 7px;
    background: var(--surface);
    color: #7a7a7a;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.whatsnew-tab:hover {
    color: #fff;
    background: rgba(196, 0, 0, 0.14);
    border-color: var(--red);
}

.whatsnew-tab .whatsnew-dot {
    margin: 0;
}

.stats-pill {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 14px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.78rem;
    font-weight: 500;
}

.stats-extreme {
    font-weight: 600;
    font-size: 0.75rem;
}

.stats-extreme.up {
    color: var(--green);
}

.stats-extreme.down {
    color: var(--red-bright);
}

/* Matchup */
.matchup {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 24px;
}

.band-card {
    cursor: pointer;
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.band-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 2;
}

.band-card:hover {
    transform: translateY(-3px);
    border-color: #444;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 1px rgba(196, 0, 0, 0.15);
}

.band-card:hover::before {
    opacity: 1;
}

.band-card:hover .band-image-wrap img {
    transform: scale(1.04);
}

.band-card.winner {
    border-color: var(--green);
    box-shadow: 0 0 32px rgba(0, 204, 102, 0.15), 0 0 2px rgba(0, 204, 102, 0.3);
}

.band-card.winner::before {
    opacity: 1;
    box-shadow: inset 0 0 40px rgba(0, 204, 102, 0.06);
}

.band-card.loser {
    border-color: #3a0000;
    opacity: 0.55;
    filter: grayscale(0.4);
}

.band-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #0a0a0a;
    position: relative;
}

.band-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--surface), transparent);
}

.band-body {
    padding: 18px;
}

.band-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
}

.band-tags {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    min-height: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.band-rating {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.band-elo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--red);
    letter-spacing: 1px;
    line-height: 1;
}

.band-elo-change {
    font-size: 0.85rem;
    font-weight: 700;
    min-height: 1.3em;
    font-family: 'Inter', sans-serif;
}

.band-elo-change.positive {
    color: var(--green);
}

.band-elo-change.negative {
    color: var(--red-bright);
}

/* VS Divider */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    gap: 10px;
    min-width: 60px;
}

.vs-text {
    font-family: 'Metal Mania', cursive;
    font-size: 2.2rem;
    color: var(--red);
    text-shadow: 0 0 24px rgba(196, 0, 0, 0.3);
    user-select: none;
}

.btn-skip {
    padding: 6px 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-dim);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-skip:hover {
    border-color: #555;
    color: var(--text);
    background: var(--surface-hover);
}

.key-hint {
    font-size: 0.65rem;
    color: #333;
    text-align: center;
    line-height: 1.4;
    user-select: none;
}

.key-hint kbd {
    display: inline-block;
    padding: 1px 5px;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    background: var(--surface);
    color: #444;
}

/* Rankings */
#rankings-section {
    margin-top: 8px;
}

.rankings-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.rankings-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--red);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.rankings-header span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

#rankings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

#rankings-table th {
    text-align: left;
    padding: 12px 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #0e0e0e;
    font-family: 'Inter', sans-serif;
}

#rankings-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #151515;
}

#rankings-table tbody tr {
    cursor: pointer;
    transition: background 0.15s ease;
}

#rankings-table tbody tr:hover {
    background: var(--surface-hover);
}

#rankings-table .top-1 td {
    background: rgba(212, 160, 23, 0.06);
}

#rankings-table .top-2 td {
    background: rgba(160, 160, 160, 0.04);
}

#rankings-table .top-3 td {
    background: rgba(184, 115, 51, 0.04);
}

#rankings-table tbody tr.top-1:hover td {
    background: rgba(212, 160, 23, 0.12);
}

#rankings-table tbody tr.top-2:hover td {
    background: rgba(160, 160, 160, 0.1);
}

#rankings-table tbody tr.top-3:hover td {
    background: rgba(184, 115, 51, 0.1);
}

.rank {
    color: var(--text-dim);
    width: 40px;
    font-weight: 500;
}

.top-1 .rank { color: var(--gold); font-weight: 700; }
.top-2 .rank { color: var(--silver); font-weight: 700; }
.top-3 .rank { color: var(--bronze); font-weight: 700; }

.rank-img img {
    border-radius: 4px;
    object-fit: cover;
}

.rank-name .name {
    display: block;
    color: #eee;
    font-weight: 600;
    font-size: 0.92rem;
}

.rank-name .tags {
    display: block;
    font-size: 0.7rem;
    color: #444;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rank-elo {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--red);
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.rank-trend {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.trend-up {
    color: var(--green);
}

.trend-down {
    color: var(--red-bright);
}

.trend-neutral {
    color: #444;
}

.rank-wins {
    color: var(--green);
    font-weight: 500;
}

.rank-losses {
    color: var(--red-bright);
    font-weight: 500;
}

/* Elo Info */
#elo-info-section {
    margin-top: 44px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.info-heading {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--red);
    margin-bottom: 18px;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.elo-desc {
    color: #888;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 400;
}

.elo-simple {
    color: #aaa;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.elo-example {
    background: #0a0a0a;
    padding: 12px 16px;
    border-radius: var(--radius);
    border-left: 3px solid var(--green);
    margin-bottom: 16px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.elo-example strong {
    display: block;
    color: var(--green);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.elo-example span {
    color: #999;
}

.elo-details {
    margin-top: 4px;
}

.elo-details summary {
    cursor: pointer;
    color: #555;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.elo-details summary:hover {
    color: var(--red);
}

.elo-details summary i {
    font-size: 0.75rem;
}

.elo-details[open] summary {
    margin-bottom: 14px;
    color: var(--red);
}

.elo-technical {
    color: #555;
    font-size: 0.78rem;
    line-height: 1.6;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.elo-formulas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.elo-formula {
    background: #0a0a0a;
    padding: 12px 16px;
    border-radius: var(--radius);
    border-left: 3px solid var(--red);
}

.elo-formula strong {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.elo-formula code {
    color: var(--green);
    font-size: 0.88rem;
    font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
    font-weight: 500;
}

.elo-params {
    display: flex;
    gap: 28px;
    margin-bottom: 14px;
}

.param-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.param-value {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0 16px;
    color: #2a2a2a;
    font-size: 0.75rem;
    font-weight: 500;
}

footer i {
    color: var(--red);
    margin: 0 2px;
}

.missing-band {
    margin-top: 10px;
    color: #3a3a3a;
    font-size: 0.78rem;
}

.missing-band a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.missing-band a:hover {
    color: var(--red);
}

.footer-credit {
    margin-top: 14px;
    color: #2a2a2a;
    font-size: 0.72rem;
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 14px 32px;
    }

    .logo {
        font-size: 2.6rem;
    }

    header {
        padding: 28px 0 18px;
    }

    .matchup {
        flex-direction: column;
        gap: 14px;
    }

    .band-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .band-image-wrap {
        width: 110px;
        height: 110px;
        aspect-ratio: auto;
        flex-shrink: 0;
    }

    .image-overlay {
        display: none;
    }

    .band-body {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .band-body h2 {
        font-size: 1.2rem;
    }

    .band-elo {
        font-size: 1.5rem;
    }

    .vs-divider {
        flex-direction: row;
        padding: 2px 0;
        gap: 16px;
    }

    .vs-text {
        font-size: 1.6rem;
    }

    .key-hint {
        display: none;
    }

    #rankings-table {
        font-size: 0.78rem;
    }

    #rankings-table th:nth-child(5),
    #rankings-table td:nth-child(5),
    #rankings-table th:nth-child(6),
    #rankings-table td:nth-child(6),
    #rankings-table th:nth-child(7),
    #rankings-table td:nth-child(7),
    #rankings-table th:nth-child(8),
    #rankings-table td:nth-child(8) {
        display: none;
    }

    .rank-img img {
        width: 28px;
        height: 28px;
    }

    .rank-name .name {
        font-size: 0.82rem;
    }

    .elo-params {
        flex-direction: column;
        gap: 6px;
    }

    .outcome-label {
        font-size: 0.65rem;
    }

    .modal-card {
        max-width: 95vw;
        max-height: 90vh;
    }
}

/* Outcome label */
.outcome-label {
    font-size: 0.72rem;
    color: #555;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Skeleton loading */
.band-card.skeleton .band-image-wrap {
    background: #1a1a1a;
    animation: pulse 1.2s ease-in-out infinite;
}

.band-card.skeleton .band-body h2 {
    background: #1a1a1a;
    color: transparent;
    border-radius: 4px;
    animation: pulse 1.2s ease-in-out infinite;
    min-width: 120px;
    height: 1.3em;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Rank delta */
.rank-delta {
    display: block;
    font-size: 0.6rem;
    line-height: 1;
    margin-top: 1px;
}

.new-badge {
    display: inline-block;
    margin-left: 7px;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(196, 0, 0, 0.15);
    border: 1px solid var(--red);
    color: var(--red-bright);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.rank-up {
    color: var(--green);
    font-weight: 700;
}

.rank-down {
    color: var(--red-bright);
    font-weight: 700;
}

@keyframes rankShift {
    0% { background: rgba(196, 0, 0, 0.15); }
    100% { background: transparent; }
}

/* Band Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.visible {
    display: flex;
}

.modal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #555;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
}

.modal-close:hover {
    color: var(--red);
}

.modal-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0a0a0a;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 20px;
}

.modal-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.modal-tags {
    color: #555;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.modal-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.modal-stat-label {
    display: block;
    color: #555;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.modal-stat-value {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.modal-sparkline {
    margin-bottom: 14px;
    background: #0a0a0a;
    border-radius: var(--radius);
    padding: 8px 0;
}

.sparkline-svg {
    width: 100%;
    height: 40px;
    display: block;
}

.modal-trends {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-trend-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #777;
}

.modal-trend-row span:first-child {
    color: #555;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.modal-trend-row .trend-up,
.modal-trend-row .trend-down {
    font-weight: 700;
}

.modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.modal-share {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: 1px solid var(--border);
    background: var(--surface-hover);
    color: var(--text);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}

.modal-share:hover {
    border-color: var(--red);
    color: #fff;
    background: rgba(196, 0, 0, 0.12);
}

.share-feedback {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}

.share-feedback.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Rankings controls (search + genre filter) */
.rankings-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.rankings-search,
.rankings-genre {
    padding: 9px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.2s;
}

.rankings-search {
    flex: 1;
    min-width: 160px;
}

.rankings-search:focus,
.rankings-genre:focus {
    outline: none;
    border-color: var(--red);
}

.rankings-search::placeholder {
    color: #555;
}

.rankings-genre {
    cursor: pointer;
}

/* Modal: recent matches */
.modal-recent {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
}

.recent-title {
    color: #555;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.recent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
}

.rm-result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    padding: 0 5px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
}

.rm-result.win {
    background: rgba(0, 204, 102, 0.12);
    color: var(--green);
}

.rm-result.loss {
    background: rgba(196, 0, 0, 0.12);
    color: var(--red);
}

.rm-opp {
    flex: 1;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rm-change {
    font-weight: 700;
    font-size: 0.75rem;
}

.rm-change.positive {
    color: var(--green);
}

.rm-change.negative {
    color: var(--red-bright);
}

/* Modal: head-to-head compare */
.modal-compare {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

#compare-select {
    width: 100%;
    padding: 9px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
}

#compare-select:focus {
    outline: none;
    border-color: var(--red);
}

.compare-result {
    margin-top: 12px;
}

.compare-empty {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.h2h-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.h2h-name {
    flex: 1;
    color: #999;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h2h-name:last-child {
    text-align: right;
}

.h2h-score strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
}

.h2h-meta {
    margin-top: 6px;
    color: #666;
    font-size: 0.72rem;
    text-align: center;
}

/* Footer inline actions */
.link-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--red-bright);
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.link-btn:hover {
    color: #fff;
}

.whatsnew-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 5px;
    border-radius: 50%;
    background: var(--red-bright);
    vertical-align: middle;
}

.whatsnew-card {
    padding: 28px 24px 24px;
}

.whatsnew-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--red);
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.whatsnew-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsnew-list li {
    position: relative;
    padding-left: 18px;
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.5;
}

.whatsnew-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.whatsnew-list strong {
    color: var(--text);
    font-weight: 600;
}

.whatsnew-bands-label {
    margin-top: 20px;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsnew-bands {
    color: #888;
    font-size: 0.78rem;
    line-height: 1.75;
    max-height: 200px;
    overflow-y: auto;
}

/* Feedback / suggest modal */
.submit-card {
    padding: 28px 24px 24px;
}

.submit-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--red);
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.submit-field {
    margin-bottom: 14px;
}

.submit-field label {
    display: block;
    color: #888;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.submit-field input,
.submit-field textarea {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    resize: vertical;
}

.submit-field input:focus,
.submit-field textarea:focus {
    outline: none;
    border-color: var(--red);
}

.submit-btn {
    width: 100%;
    padding: 11px;
    background: var(--red);
    border: none;
    border-radius: var(--radius);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: var(--red-bright);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.submit-status {
    margin-top: 12px;
    font-size: 0.82rem;
    min-height: 1em;
    text-align: center;
}

.submit-status.ok {
    color: var(--green);
}

.submit-status.err {
    color: var(--red-bright);
}