.supporters-page {
    min-height: 100vh;
    margin: 0;
    color: #f8fafc;
    background: linear-gradient(135deg, #111827 0%, #1e293b 52%, #0f172a 100%);
}

.supporters-shell {
    width: min(1060px, calc(100vw - 28px));
    margin: 0 auto;
    padding: 34px 0 54px;
    overflow: auto;
    height: 100%;
}

.supporters-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #fde68a;
    font-weight: 900;
    text-decoration: none;
}

.supporters-hero {
    border: 1px solid rgba(253, 230, 138, 0.22);
    border-radius: 24px;
    padding: clamp(22px, 4vw, 42px);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.supporters-eyebrow {
    margin: 0 0 10px;
    color: #fde68a;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.supporters-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(34px, 7vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.supporters-hero p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
}

.supporters-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 22px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 18px;
    background: rgba(30, 41, 59, 0.78);
    color: #e2e8f0;
}

.supporters-note strong {
    color: #fff7ed;
}

.supporters-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.supporters-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 1000;
    text-decoration: none;
    border: 1px solid rgba(253, 230, 138, 0.34);
}

.supporters-button-primary {
    color: #1f2937;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.24);
}

.supporters-button-secondary {
    color: #fde68a;
    background: rgba(15, 23, 42, 0.68);
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.supporter-card {
    position: relative;
    overflow: hidden;
    min-height: 166px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.68);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.supporter-rank {
    display: inline-flex;
    min-width: 46px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #1e293b;
    background: #fde68a;
    font-size: 13px;
    font-weight: 1000;
}

.supporter-name {
    margin: 18px 0 8px;
    font-size: 24px;
    line-height: 1.1;
    word-break: break-word;
}

.supporter-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    color: #cbd5e1;
    font-weight: 800;
}

.supporter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.13);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.supporters-test-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #b45309;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    padding: 6px 16px;
    letter-spacing: 0.04em;
}

@media (max-width: 640px) {
    .supporters-shell {
        width: min(100% - 18px, 1060px);
        padding-top: 18px;
    }

    .supporters-hero {
        border-radius: 18px;
    }

    .supporters-note {
        flex-direction: column;
    }
}