.awards-body {
    background: radial-gradient(ellipse at top, #1a1a22 0%, #0d0d0f 60%);
    min-height: 100vh;
}

.awards-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* ─── Hero ───────────────────────────────── */
.awards-hero {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    isolation: isolate;
}

.awards-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.awards-spotlight {
    position: absolute;
    width: 700px;
    height: 1200px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: spotlightDrift 18s ease-in-out infinite alternate;
}

.awards-spotlight-left {
    top: -200px;
    left: -260px;
    transform: skewX(18deg);
}

.awards-spotlight-right {
    top: -200px;
    right: -260px;
    transform: skewX(-18deg);
    animation-delay: -6s;
}

.awards-spotlight-center {
    top: 30%;
    left: 50%;
    margin-left: -350px;
    width: 700px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 60%);
    animation-delay: -12s;
}

@keyframes spotlightDrift {
    0% { transform: skewX(15deg) translateX(-30px); }
    100% { transform: skewX(15deg) translateX(30px); }
}

.awards-spotlight-right {
    animation-name: spotlightDriftRight;
}

@keyframes spotlightDriftRight {
    0% { transform: skewX(-15deg) translateX(30px); }
    100% { transform: skewX(-15deg) translateX(-30px); }
}

.awards-spotlight-center {
    animation-name: spotlightDriftCenter;
}

@keyframes spotlightDriftCenter {
    0% { transform: translateY(-20px); opacity: 0.7; }
    100% { transform: translateY(20px); opacity: 1; }
}

.awards-stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.awards-main {
    position: relative;
    z-index: 1;
}

.awards-stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.4;
    animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.awards-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    margin-bottom: 60px;
}

.awards-edition {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-3);
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-1);
}

.awards-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.85;
    margin-bottom: 16px;
}

.awards-title-z {
    font-size: clamp(56px, 11vw, 140px);
    font-weight: 900;
    letter-spacing: 0.04em;
    background: linear-gradient(180deg, #ffffff 0%, #888892 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 24px rgba(255,255,255,0.15));
}

.awards-title-aw {
    font-size: clamp(28px, 5.5vw, 72px);
    font-weight: 800;
    letter-spacing: 0.6em;
    margin-left: 0.6em;
    color: var(--text-1);
    margin-top: 4px;
}

.awards-tagline {
    font-size: 15px;
    color: var(--text-2);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.awards-meta {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.awards-meta-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
}

.awards-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.awards-meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-3);
    font-weight: 700;
}

.awards-meta-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-0);
    display: flex;
    align-items: center;
    gap: 8px;
    font-variant-numeric: tabular-nums;
}

/* ─── Stage / Podium ─────────────────────── */
.awards-stage {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    z-index: 1;
}

.awards-stage-rays {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 1px;
    height: 1px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.awards-stage-rays span {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 700px;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 70%);
    transform-origin: top center;
    animation: rayPulse 4s ease-in-out infinite;
}

.awards-stage-rays span:nth-child(1) { transform: rotate(-30deg); animation-delay: 0s; }
.awards-stage-rays span:nth-child(2) { transform: rotate(-15deg); animation-delay: 0.4s; }
.awards-stage-rays span:nth-child(3) { transform: rotate(0deg); animation-delay: 0.8s; }
.awards-stage-rays span:nth-child(4) { transform: rotate(15deg); animation-delay: 1.2s; }
.awards-stage-rays span:nth-child(5) { transform: rotate(30deg); animation-delay: 1.6s; }

@keyframes rayPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.awards-podium {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 6px;
    z-index: 0;
    pointer-events: none;
}

.awards-podium-step {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    width: 80px;
    background: linear-gradient(180deg, #2a2a32 0%, #14141a 100%);
    border: 1px solid var(--border-strong);
    border-bottom: none;
    color: var(--text-2);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.04em;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.awards-podium-step-1 { height: 80px; }
.awards-podium-step-2 { height: 56px; }
.awards-podium-step-3 { height: 36px; }

.awards-stage-player {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 30px 80px rgba(0,0,0,0.6),
        0 0 120px rgba(255,255,255,0.04);
    text-decoration: none;
    color: inherit;
    background: var(--bg-2);
    transition: transform 0.25s ease;
}

.awards-stage-player:hover {
    transform: translateY(-4px);
}

.awards-stage-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awards-stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.awards-live-badge {
    top: 16px;
    left: 16px;
    z-index: 3;
}

.awards-viewers {
    top: 16px;
    right: 16px;
    z-index: 3;
}

.awards-play-btn {
    z-index: 3;
}

.awards-stage-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    gap: 16px;
}

.awards-stage-host {
    display: flex;
    align-items: center;
    gap: 10px;
}

.awards-stage-host img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
}

.awards-stage-host-name {
    font-weight: 800;
    color: var(--text-0);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.awards-stage-host-sub {
    font-size: 12px;
    color: var(--text-2);
}

.awards-stage-cta-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-2);
    font-weight: 700;
    background: rgba(13,13,15,0.6);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* ─── Categories ─────────────────────────── */
.awards-categories {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.awards-categories-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.awards-section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-0);
    letter-spacing: -0.01em;
}

.awards-vote-all {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
}

.awards-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 22px;
}

.awards-cat-card {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.awards-cat-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.awards-cat-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-0);
    letter-spacing: 0.01em;
}

.awards-cat-sub {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.awards-cat-body {
    padding: 8px 0;
}

.awards-nominee {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 12px;
    padding: 12px 22px;
    align-items: center;
    transition: background 0.15s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.awards-nominee:hover {
    background: var(--bg-2);
}

.awards-nominee + .awards-nominee {
    border-top: 1px solid var(--border);
}

.awards-nominee-rank {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-3);
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.awards-nominee.leader .awards-nominee-rank {
    color: var(--text-0);
}

.awards-nominee-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.awards-nominee-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.awards-nominee-meta {
    min-width: 0;
}

.awards-nominee-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-0);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.awards-nominee-bar {
    height: 4px;
    background: var(--bg-3);
    border-radius: 2px;
    margin-top: 6px;
    overflow: hidden;
    position: relative;
    width: 220px;
    max-width: 100%;
}

.awards-nominee-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #6e6e7a 0%, #ffffff 100%);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}

.awards-nominee-percent {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 4px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.awards-vote-btn {
    height: 32px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--bg-3);
    color: var(--text-1);
    font-weight: 700;
    font-size: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.awards-vote-btn:hover {
    background: var(--text-0);
    color: var(--bg-0);
    border-color: var(--text-0);
}

.awards-vote-btn.voted {
    background: var(--text-0);
    color: var(--bg-0);
    border-color: var(--text-0);
    pointer-events: none;
}

/* ─── Rules ──────────────────────────────── */
.awards-rules {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.awards-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.awards-rule {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: relative;
}

.awards-rule-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-3);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, var(--text-2) 0%, var(--text-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awards-rule-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-0);
    margin-bottom: 8px;
}

.awards-rule-text {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .awards-cats-grid {
        grid-template-columns: 1fr;
    }
    .awards-categories-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .awards-vote-all {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .awards-main {
        padding: 0 14px 40px;
    }
    .awards-hero {
        padding: 30px 0 50px;
    }
    .awards-edition {
        font-size: 10px;
        letter-spacing: 0.3em;
        padding: 5px 12px;
    }
    .awards-tagline {
        font-size: 13px;
        padding: 0 6px;
    }
    .awards-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 16px;
        width: 100%;
    }
    .awards-meta-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .awards-meta-divider {
        width: 100%;
        height: 1px;
    }
    .awards-meta-value {
        font-size: 15px;
    }
    .awards-section-title {
        font-size: 20px;
    }
    .awards-categories {
        margin-top: 50px;
    }
    .awards-rules {
        margin-top: 50px;
        padding-top: 36px;
    }
    .awards-stage-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }
    .awards-stage-host img {
        width: 36px;
        height: 36px;
    }
    .awards-stage-host-name {
        font-size: 13px;
    }
    .awards-stage-host-sub {
        font-size: 11px;
    }
    .awards-stage-cta-text {
        font-size: 10px;
        padding: 5px 10px;
    }
    .awards-podium {
        display: none;
    }
    .awards-stage-rays {
        display: none;
    }
    .awards-cat-head {
        padding: 14px 16px;
    }
    .awards-cat-title {
        font-size: 14px;
    }
    .awards-nominee {
        padding: 10px 14px;
        gap: 8px;
        grid-template-columns: 26px 1fr auto;
    }
    .awards-nominee-bar {
        width: 100%;
    }
    .awards-vote-btn {
        height: 30px;
        padding: 0 10px;
        font-size: 11px;
    }
    .awards-rule {
        padding: 18px;
    }
    .awards-rule-num {
        font-size: 26px;
    }
}

@media (max-width: 380px) {
    .awards-meta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .awards-stage-player {
        border-radius: 12px;
    }
}
