:root {
            --bg-light: #FAFBFD;
            --bg-white: #FFFFFF;
            --bg-soft: #F0F4F8;
            --bg-card: #FFFFFF;
            --navy: #0B1120;
            --navy-mid: #111827;
            --ice-primary: #0288D1;
            --ice-deep: #01579B;
            --ice-bright: #4FC3F7;
            --ice-glow: rgba(2, 136, 209, 0.08);
            --gold: #D4A34A;
            --gold-light: #E8C785;
            --silver: #A8B5C1;
            --bronze: #B87333;
            --white: #FFFFFF;
            --text-dark: #1A2332;
            --text-body: #3D4F63;
            --text-muted: #6B7D92;
            --text-light: #94A3B8;
            --border: rgba(0, 0, 0, 0.06);
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background: var(--bg-light);
            color: var(--text-dark);
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ============ NAV ============ */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--navy);
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo img {
            height: 72px;
            width: auto;
        }
        .nav-cta {
            padding: 10px 22px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--ice-primary), var(--ice-deep));
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: var(--font-body);
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(2, 136, 209, 0.25);
        }

        /* ============ HERO ============ */
        .hero {
            background: var(--navy);
            padding: 72px 0 56px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(2, 136, 209, 0.12), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(79, 195, 247, 0.08), transparent 50%);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 780px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(79, 195, 247, 0.12);
            border: 1px solid rgba(79, 195, 247, 0.25);
            padding: 6px 18px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--ice-bright);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.25rem, 5.5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--white);
        }
        .hero h1 em {
            font-style: italic;
            color: var(--ice-bright);
        }
        .hero-sub {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.65;
            max-width: 620px;
            margin: 0 auto;
        }

        /* ============ VIDEO ============ */
        .video-section {
            background: var(--navy);
            padding: 0 0 80px;
        }
        .video-wrap {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(79, 195, 247, 0.15);
        }
        .video-container iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            border: none;
        }

        /* ============ SECTION HEADER ============ */
        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--ice-primary);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.75rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--text-dark);
            margin-bottom: 16px;
        }
        .section-title em {
            font-style: italic;
            color: var(--ice-primary);
        }
        .section-sub {
            font-size: 1rem;
            color: var(--text-body);
            line-height: 1.7;
        }

        /* ============ TOP 10 GRID ============ */
        .finalists-section {
            padding: 96px 0;
            background: var(--bg-light);
        }
        .finalists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .finalist-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .finalist-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }
        .finalist-card.winner {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .finalist-card.gold { border-top: 4px solid var(--gold); grid-column: span 1; }
        .finalist-card.silver { border-top: 4px solid var(--silver); }
        .finalist-card.bronze { border-top: 4px solid var(--bronze); }

        .finalist-order {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--ice-primary), var(--ice-deep));
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.82rem;
            line-height: 1;
            box-shadow: 0 2px 6px rgba(2, 136, 209, 0.35);
            flex-shrink: 0;
            letter-spacing: -0.02em;
            margin-right: 10px;
        }
        .finalist-name {
            display: flex;
            align-items: center;
        }

        .rank-ribbon {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-family: var(--font-body);
            z-index: 2;
            backdrop-filter: blur(8px);
        }
        .rank-ribbon.gold { background: var(--gold); color: var(--white); }
        .rank-ribbon.silver { background: var(--silver); color: var(--white); }
        .rank-ribbon.bronze { background: var(--bronze); color: var(--white); }

        .finalist-graphic {
            width: 100%;
            aspect-ratio: 4 / 5;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 0.8rem;
            font-family: var(--font-body);
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .finalist-graphic:hover img {
            transform: scale(1.02);
        }
        .finalist-graphic img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }
        .finalist-info {
            padding: 22px 22px 26px;
        }
        .finalist-name {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .finalist-name a {
            color: inherit;
            text-decoration: none;
            border-bottom: 1px dotted rgba(0,0,0,0.3);
            transition: all 0.2s ease;
        }
        .finalist-name a:hover {
            color: var(--ice-primary);
            border-bottom-color: var(--ice-primary);
        }
        .finalist-title {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .finalist-statement {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            font-family: var(--font-display);
            font-style: italic;
            font-size: 0.95rem;
            color: var(--text-body);
            line-height: 1.5;
        }

        .winners-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto 48px;
        }
        .winners-row .finalist-card {
            transform: scale(1);
        }
        .winners-row .finalist-card:hover {
            transform: translateY(-6px);
        }

        .finalists-divider {
            text-align: center;
            margin: 72px auto 48px;
            max-width: 600px;
            padding: 0 24px;
            position: relative;
        }
        .finalists-divider::before {
            content: '';
            display: block;
            position: absolute;
            top: 50%;
            left: 0; right: 0;
            height: 1px;
            background: var(--border);
            z-index: 0;
        }
        .finalists-divider span {
            position: relative;
            z-index: 1;
            background: var(--bg-light);
            padding: 0 20px;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        /* ============ CTA BLOCK (PRIMARY) ============ */
        .cta-block {
            background: linear-gradient(135deg, var(--navy), var(--navy-mid));
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 0%, rgba(2, 136, 209, 0.18), transparent 60%);
            pointer-events: none;
        }
        .cta-block-inner {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
        }
        .cta-block h2 {
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 4vw, 2.65rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 16px;
        }
        .cta-block h2 em {
            font-style: italic;
            color: var(--ice-bright);
        }
        .cta-block p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--ice-primary), var(--ice-deep));
            color: var(--white);
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(2, 136, 209, 0.4);
        }
        .cta-note {
            margin-top: 16px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ============ JUDGES ============ */
        .judges-section {
            padding: 96px 0;
            background: var(--bg-white);
        }
        .judges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 36px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .judge-card {
            text-align: center;
        }
        .judge-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bg-soft), var(--bg-light));
            margin: 0 auto 18px;
            border: 3px solid var(--bg-white);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 0.7rem;
            letter-spacing: 1px;
        }
        .judge-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .judge-name {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .judge-title {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            max-width: 240px;
            margin: 0 auto;
        }
        .judge-bio {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid var(--border);
            font-size: 0.88rem;
            color: var(--text-body);
            line-height: 1.65;
            text-align: left;
        }

        /* ============ PRIZES ============ */
        .prizes-section {
            padding: 96px 0;
            background: var(--bg-soft);
        }
        .prizes-total {
            text-align: center;
            margin-bottom: 48px;
        }
        .prizes-total-number {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 8vw, 5.5rem);
            font-weight: 700;
            color: var(--ice-primary);
            line-height: 1;
            letter-spacing: -0.02em;
        }
        .prizes-total-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 8px;
        }
        .prizes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            max-width: 960px;
            margin: 0 auto;
        }
        .prize-card {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 28px 24px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .prize-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
        }
        .prize-tier {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .prize-tier.gold { background: rgba(212, 163, 74, 0.15); color: var(--gold); }
        .prize-tier.silver { background: rgba(168, 181, 193, 0.2); color: #6B7D92; }
        .prize-tier.bronze { background: rgba(184, 115, 51, 0.15); color: var(--bronze); }
        .prize-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 14px;
        }
        .prize-card ul {
            list-style: none;
            padding: 0;
        }
        .prize-card li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--text-body);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            line-height: 1.5;
        }
        .prize-card li:last-child {
            border-bottom: none;
        }
        .prize-check {
            color: var(--ice-primary);
            font-weight: 700;
            flex-shrink: 0;
            width: 28px;
            text-align: center;
            font-size: 1rem;
        }
        .prize-photo {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 1.5px solid var(--ice-primary);
            box-shadow: 0 2px 6px rgba(2, 136, 209, 0.18);
        }
        .prize-text {
            flex: 1;
            line-height: 1.5;
        }
        .prize-card li .prize-value {
            font-weight: 700;
            color: var(--ice-primary);
            font-size: 0.78rem;
            white-space: nowrap;
            background: rgba(2, 136, 209, 0.1);
            padding: 3px 10px;
            border-radius: 100px;
            margin-left: auto;
            flex-shrink: 0;
        }

        /* ============ SECONDARY CTAs ============ */
        .secondary-ctas {
            padding: 96px 0;
            background: var(--bg-white);
        }
        .secondary-ctas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            max-width: 960px;
            margin: 48px auto 0;
        }
        .secondary-cta-card {
            padding: 40px 32px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg-light);
            transition: all 0.3s ease;
            text-align: center;
        }
        .secondary-cta-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
        }
        .secondary-cta-icon {
            font-size: 2rem;
            margin-bottom: 16px;
        }
        .secondary-cta-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        .secondary-cta-card p {
            font-size: 0.95rem;
            color: var(--text-body);
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .secondary-cta-card .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: var(--font-body);
        }
        .secondary-cta-card .btn-outline {
            background: transparent;
            color: var(--ice-primary);
            border: 2px solid var(--ice-primary);
        }
        .secondary-cta-card .btn-outline:hover {
            background: var(--ice-primary);
            color: var(--white);
        }

        /* ============ FOOTER ============ */
        footer {
            background: var(--navy);
            padding: 40px 24px;
            text-align: center;
        }
        footer p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }
        footer a {
            color: var(--ice-bright);
            text-decoration: none;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .hero { padding: 56px 0 40px; }
            .video-section { padding-bottom: 56px; }
            .finalists-section, .judges-section, .prizes-section, .secondary-ctas {
                padding: 64px 0;
            }
            .cta-block { padding: 64px 24px; }
            .winners-row { gap: 20px; }
            .finalists-divider { margin: 48px auto 32px; }
        }

        /* ============ LIGHTBOX ============ */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(10, 14, 30, 0.92);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 32px;
            cursor: zoom-out;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        .lightbox.open {
            display: flex;
            opacity: 1;
        }
        .lightbox-img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            cursor: default;
            animation: lightboxIn 0.3s ease;
        }
        @keyframes lightboxIn {
            from { transform: scale(0.92); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }
        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        /* ============ INSIDE THE PRIZE PACKAGE ============ */
        .prizes-detail {
            padding: 96px 0;
            background: var(--bg-light);
        }
        .prizes-detail-grid {
            max-width: 880px;
            margin: 48px auto 0;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .prize-detail-row {
            display: flex;
            gap: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            align-items: flex-start;
            transition: all 0.3s ease;
        }
        .prize-detail-row:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
        }
        .prize-detail-photo,
        .prize-detail-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .prize-detail-photo {
            object-fit: cover;
            border: 2px solid var(--ice-primary);
            box-shadow: 0 4px 14px rgba(2, 136, 209, 0.18);
        }
        .prize-detail-icon.ss {
            background: linear-gradient(135deg, var(--ice-primary), var(--ice-deep));
            color: var(--white);
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.6rem;
            letter-spacing: -0.05em;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 14px rgba(2, 136, 209, 0.18);
        }
        .prize-detail-content {
            flex: 1;
            min-width: 0;
        }
        .prize-detail-header {
            display: flex;
            align-items: baseline;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 6px;
        }
        .prize-detail-header h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0;
            line-height: 1.2;
        }
        .prize-detail-header .prize-detail-value-pill {
            font-weight: 700;
            color: var(--ice-primary);
            font-size: 0.85rem;
            background: rgba(2, 136, 209, 0.1);
            padding: 4px 12px;
            border-radius: 100px;
            white-space: nowrap;
        }
        .prize-detail-byline {
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0 0 14px;
        }
        .prize-detail-desc {
            font-size: 0.98rem;
            color: var(--text-body);
            line-height: 1.65;
            margin: 0;
        }
        .prize-detail-tiers {
            list-style: none;
            padding: 0;
            margin: 16px 0 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .prize-detail-tiers li {
            font-size: 0.92rem;
            color: var(--text-body);
            line-height: 1.55;
            padding: 12px 16px;
            background: rgba(2, 136, 209, 0.04);
            border-left: 3px solid var(--ice-primary);
            border-radius: 6px;
        }
        .prize-detail-tiers li strong {
            color: var(--text-dark);
            font-weight: 700;
        }
        .prize-detail-link {
            display: inline-block;
            margin-top: 14px;
            color: var(--ice-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        .prize-detail-link:hover {
            color: var(--ice-deep);
        }
        @media (max-width: 640px) {
            .prize-detail-row {
                flex-direction: column;
                padding: 24px;
                gap: 16px;
            }
            .prize-detail-photo,
            .prize-detail-icon {
                width: 64px;
                height: 64px;
            }
            .prize-detail-icon.ss { font-size: 1.2rem; }
            .prize-detail-header h3 { font-size: 1.2rem; }
        }

        /* ============================================================
           Top 10 finalist card: flip-to-insight + zoom lightbox
           Added for show day. Mirrors showcase.html behaviour.
           ============================================================ */

        /* ---- Flip-to-insight ---- */
        .finalist-graphic { position: relative; }
        .finalist-graphic .graphic-back {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.25s ease;
            object-fit: contain;
            background: var(--bg-card);
        }
        .finalist-graphic.is-flipped .graphic-back { opacity: 1; }
        .flip-indicator {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.65);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding: 5px 10px;
            border-radius: 20px;
            pointer-events: none;
            text-transform: none;
            z-index: 2;
            font-family: var(--font-body);
        }
        .flip-indicator .flip-flipped { display: none; }
        .finalist-graphic.is-flipped .flip-indicator .flip-default { display: none; }
        .finalist-graphic.is-flipped .flip-indicator .flip-flipped { display: inline; }

        /* ---- Zoom button + lightbox ---- */
        .finalist-name {
            display: flex;
            align-items: center;
            gap: 0;
        }
        .finalist-name-text {
            flex-grow: 1;
        }
        .zoom-btn {
            background: none;
            border: none;
            padding: 6px;
            margin-left: 8px;
            cursor: pointer;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            flex-shrink: 0;
        }
        .zoom-btn:hover {
            background: var(--bg-soft);
            color: var(--ice-primary);
        }
        .zoom-btn svg {
            width: 18px;
            height: 18px;
        }
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.88);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            animation: lb-fade 0.2s ease;
        }
        .lightbox[data-open="true"] { display: flex; opacity: 1; }
        @keyframes lb-fade {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .lightbox-content {
            position: relative;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
        }
        .lightbox-name {
            color: #fff;
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .lightbox-img {
            max-width: min(90vw, 700px);
            max-height: 70vh;
            object-fit: contain;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
        }
        .lightbox-toggle {
            background: rgba(255, 255, 255, 0.95);
            color: #1a1a2e;
            border: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding: 10px 20px;
            border-radius: 24px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
        }
        .lightbox-toggle:hover {
            background: #fff;
            transform: translateY(-1px);
        }
        .lightbox-toggle .t-flipped { display: none; }
        .lightbox[data-flipped="true"] .lightbox-toggle .t-default { display: none; }
        .lightbox[data-flipped="true"] .lightbox-toggle .t-flipped { display: inline; }
        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: #fff;
            font-size: 28px;
            line-height: 1;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        body.lb-open {
            overflow: hidden;
        }

        /* ============================================================
           Post-show additions (May 9 results)
           ============================================================ */

        /* Top 3 podium: 3-column constraint, centered, slightly tighter */
        .podium-grid {
            grid-template-columns: repeat(3, 1fr) !important;
            max-width: 1180px;
        }
        @media (max-width: 900px) {
            .podium-grid {
                grid-template-columns: 1fr !important;
                max-width: 480px;
            }
        }

        /* Top 3 cards: lift on hover, slight glow */
        .finalist-card.winner {
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .finalist-card.winner:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
        }

        /* Top 3 names link out to personal sites */
        .finalist-name-text a {
            color: inherit;
            text-decoration: none;
            border-bottom: 1px dotted rgba(0, 0, 0, 0.25);
            transition: border-color 0.2s ease, color 0.2s ease;
        }
        .finalist-name-text a:hover {
            color: var(--ice-primary);
            border-bottom-color: var(--ice-primary);
        }

        /* The full field (remaining 7) — subtle visual reset between sections */
        .finalists-secondary {
            padding-top: 40px;
        }
        .finalists-secondary .section-header {
            margin-bottom: 48px;
        }
