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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 瑙︽懜鍙嬪ソ鐨勬寜閽拰閾炬帴 */
a, button {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
}
.nav-logo-image {
    width: 88px;
    height: 44px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 8px rgba(246, 200, 91, 0.18));
}

/* 绉诲姩绔彍鍗曟寜閽?*/
.nav-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fdeac7;
    transition: all 0.3s;
}

.nav-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation */
.nav {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 84.8px;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 0.8px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 82px;
    z-index: 1000;
}

.nav > div:last-child {
    min-width: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'SF Pro Expanded Heavy', sans-serif;
    font-size: 24px;
    color: #fdebc5;
    line-height: 36px;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14.4px;
    color: #fdeac7;
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #fdeac7;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #ffe88c;
}

.nav-links a[aria-current="page"] {
    color: #ffe88c;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 4px;
    border: 1px solid rgba(253, 234, 199, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-actions span {
    width: 1px;
    height: 14px;
    background: rgba(253, 234, 199, 0.24);
}

.language-toggle {
    min-width: 34px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(253, 234, 199, 0.72);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-toggle:hover,
.language-toggle.is-active {
    color: #0b0904;
    background: linear-gradient(180deg, #fff2bf, #d7a755);
    box-shadow: 0 0 18px rgba(215, 167, 85, 0.28);
}

html {
    scroll-behavior: smooth;
}

.leaderboard-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    
    img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .leaderboard-blurred {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 20px;
        box-sizing: border-box;
        
        img {
            width: 240px;
            max-width: 100%;
            height: auto;
        }
        
        p {
            font-family: 'SF Pro Regular', sans-serif;
            font-size: 20px;
            background: linear-gradient(to right, #FFD700, #FFA500);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: #FFD700; /* 闄嶇骇鏂规锛屽鏋滄祻瑙堝櫒涓嶆敮鎸佹笎鍙?*/
            line-height: 30px;
            font-weight: 700;
            text-align: center;
            margin: 0;
        }
    }
}

.nav-register {
    border: 1px solid #fdeac7;
    padding: 10px 33px;
    border-radius: 8px;
    font-family: 'SF Pro Expanded Bold', sans-serif;
    font-size: 14px;
    color: #fdeac7;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-register:hover {
    background: rgba(253, 234, 199, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 85.54px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 920px;
    position: relative;
    overflow: hidden;
    background-image: url("images/hero-gimc-global-stage.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24) 44%, rgba(0, 0, 0, 0.78) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 8, 18, 0.06) 44%, rgba(0, 0, 0, 0.5));
}

.hero-award {
    position: absolute;
    left: 50%;
    top: 52%;
    z-index: 1;
    width: 460px;
    height: 460px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.72;
    mix-blend-mode: screen;
}

.hero-award-beam {
    position: absolute;
    left: 50%;
    top: -26%;
    width: 210px;
    height: 520px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(255, 232, 140, 0), rgba(255, 232, 140, 0.2) 38%, rgba(255, 170, 42, 0.12) 72%, transparent);
    clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
    filter: blur(7px);
    animation: heroBeam 5.6s ease-in-out infinite;
}

.hero-award-ring {
    position: absolute;
    left: 50%;
    top: 55%;
    border: 1px solid rgba(255, 232, 140, 0.22);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(68deg);
    box-shadow: 0 0 40px rgba(255, 188, 54, 0.1);
}

.ring-a {
    width: 390px;
    height: 390px;
    animation: heroRingSpin 18s linear infinite;
}

.ring-b {
    width: 260px;
    height: 260px;
    border-color: rgba(255, 232, 140, 0.34);
    animation: heroRingSpin 12s linear infinite reverse;
}

.hero-trophy {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 150px;
    height: 210px;
    transform: translate(-50%, -50%);
    animation: trophyFloat 4.6s ease-in-out infinite;
    filter: drop-shadow(0 24px 42px rgba(255, 180, 43, 0.32));
}

.trophy-cup {
    position: absolute;
    left: 50%;
    top: 18px;
    width: 92px;
    height: 88px;
    transform: translateX(-50%);
    border-radius: 16px 16px 36px 36px;
    background:
        linear-gradient(115deg, rgba(255, 255, 235, 0.95), rgba(255, 214, 101, 0.84) 35%, rgba(130, 76, 11, 0.92) 100%),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border: 1px solid rgba(255, 232, 140, 0.9);
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.22),
        0 0 44px rgba(255, 214, 101, 0.34);
}

.trophy-cup::before,
.trophy-cup::after {
    content: '';
    position: absolute;
    top: 14px;
    width: 42px;
    height: 42px;
    border: 8px solid rgba(255, 209, 91, 0.82);
    border-bottom-color: transparent;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(255, 214, 101, 0.2));
}

.trophy-cup::before {
    left: -34px;
    border-right-color: transparent;
    transform: rotate(-28deg);
}

.trophy-cup::after {
    right: -34px;
    border-left-color: transparent;
    transform: rotate(28deg);
}

.trophy-stem {
    position: absolute;
    left: 50%;
    top: 100px;
    width: 30px;
    height: 54px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #5c3508, #ffdf79 50%, #6d4009);
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 214, 101, 0.2);
}

.trophy-base {
    position: absolute;
    left: 50%;
    top: 146px;
    width: 118px;
    height: 34px;
    transform: translateX(-50%);
    border-radius: 8px 8px 18px 18px;
    background: linear-gradient(90deg, #3a2106, #f8c75e 50%, #442707);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 214, 101, 0.28);
}

.hero-podium {
    position: absolute;
    left: 50%;
    top: 72%;
    display: grid;
    grid-template-columns: 78px 96px 78px;
    align-items: end;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-podium span {
    display: block;
    border: 1px solid rgba(255, 232, 140, 0.16);
    background: linear-gradient(180deg, rgba(255, 232, 140, 0.08), rgba(70, 42, 8, 0.18));
    box-shadow: inset 0 1px 14px rgba(255, 232, 140, 0.06), 0 18px 36px rgba(0, 0, 0, 0.28);
    opacity: 0.56;
}

.hero-podium span:nth-child(1),
.hero-podium span:nth-child(3) {
    height: 42px;
}

.hero-podium span:nth-child(2) {
    height: 64px;
}

.hero-sparks span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffe88c;
    box-shadow: 0 0 16px rgba(255, 232, 140, 0.95);
    opacity: 0;
    animation: heroSpark 4.8s ease-in-out infinite;
    animation-delay: var(--d);
}

.hero-sparks span:nth-child(1) { --x: 22%; --y: 70%; --d: 0s; }
.hero-sparks span:nth-child(2) { --x: 32%; --y: 30%; --d: 0.7s; }
.hero-sparks span:nth-child(3) { --x: 46%; --y: 78%; --d: 1.2s; }
.hero-sparks span:nth-child(4) { --x: 58%; --y: 24%; --d: 1.7s; }
.hero-sparks span:nth-child(5) { --x: 70%; --y: 62%; --d: 2.2s; }
.hero-sparks span:nth-child(6) { --x: 82%; --y: 42%; --d: 2.8s; }

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.hero-subtitle {
    font-family: 'SF Pro Expanded Semibold', sans-serif;
    font-size: 32px;
    color: #fdebc5;
    line-height: 35.2px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'SF Pro Black', sans-serif;
    font-size: 110px;
    color: #fff;
    line-height: normal;
    margin-bottom: 20px;
}

.hero-title-gradient {
    background: linear-gradient(147.21deg, #ffe88c 17.641%, #ff9d00 70.934%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'SF Pro Black', sans-serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-text {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 19.2px;
    color: #fff;
    line-height: 40px;
    max-width: 810px;
    margin-bottom: 40px;
}

.hero-button {
    background: linear-gradient(147.21deg, #ffe88c 17.641%, #ff9d00 70.934%);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 16px;
    color: #151515;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 232, 140, 0.3);
}

/* Section Styles */
.section {
    width: 100%;
    position: relative;
}

.section-title {
    font-family: 'SF Pro Expanded Heavy', sans-serif;
    font-size: 40px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-bottom: 24px;
}

.section-title-line {
    width: 81.257px;
    height: 4.086px;
    background: linear-gradient(172.33deg, #ffe88c 17.641%, #ff9d00 70.934%);
}

.section-subtitle {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 48px;
}

/* What is WRGI Section */
.what-is-section {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 79px 190px;
    min-height: 854px;
    scroll-margin-top: 100px;
}

.what-is-content {
    max-width: 1523.85px;
    margin: 0 auto;
}

.what-is-video-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 40px auto 0;
    border: 1px solid rgba(255, 232, 140, 0.35);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.what-is-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.cards-grid {
    display: flex;
    gap: 20px;
    margin: 80px 0;
}

.card {
    background: #11100f;
    border: 1px solid rgba(253, 235, 197, 0.22);
    border-bottom: 2.4px solid rgba(253, 235, 197, 0.75);
    border-radius: 6px;
    padding: 0;
    flex: 1;
    height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 232, 140, 0.45);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 24%, rgba(6, 6, 6, 0.44) 58%, rgba(7, 7, 7, 0.94) 100%),
        radial-gradient(circle at 50% 8%, rgba(255, 232, 140, 0.18), transparent 42%);
    pointer-events: none;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.card-image {
    width: 100%;
    height: 208.383px;
    object-fit: cover;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 24px 20px 22px;
    text-align: center;
}

.card-title {
    font-family: 'SF Pro Expanded Bold', sans-serif;
    font-size: clamp(22px, 1.7vw, 30px);
    color: #fdebc5;
    line-height: 1.16;
    margin-bottom: 8px;
}

.card-description {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.76);
    letter-spacing: 1px;
    line-height: 1.5;
}

.what-is-text {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 32px;
    text-align: center;
    max-width: 1206px;
    margin: 0 auto;
}

/* Competition Positioning Section */
.positioning-section {
    background:
        linear-gradient(90deg, #030303 0%, #080604 52%, #030303 100%);
    padding: 100px 340px;
    min-height: 650.75px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.positioning-content {
    max-width: 690px;
    z-index: 3;
}

.positioning-title {
    font-family: 'SF Pro Expanded Heavy', sans-serif;
    font-size: 40px;
    color: #fff;
    line-height: 60px;
    margin-bottom: 12px;
}

.positioning-title-gradient {
    background: linear-gradient(153deg, #ffe88c 17.641%, #ff9d00 70.934%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.positioning-subtitle {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: #888;
    margin-bottom: 32px;
}

.positioning-text {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 31.68px;
}

.positioning-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: center right;
    filter: saturate(1.04) contrast(1.08) brightness(0.78);
}

.positioning-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.94) 28%, rgba(3, 3, 3, 0.68) 48%, rgba(3, 3, 3, 0.16) 76%, rgba(3, 3, 3, 0.42) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 76% 42%, rgba(255, 188, 58, 0.2), transparent 35%);
    z-index: 1;
    pointer-events: none;
}

/* Why Participate Section */
.why-participate-section {
    padding: 100px 190px;
    min-height: 708.8px;
    position: relative;
    overflow: hidden;
}

.why-participate-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 771.919px;
    height: 771.919px;
    opacity: 0.1;
}

.why-participate-content {
    max-width: 1523.85px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-participate-subtitle {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: #888;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    gap: 34px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.feature-card {
    width: 240px;
    position: relative;
    transition: transform 260ms ease;
}

.feature-image {
    width: 100%;
    height: 160px;
    border: 1px solid #ffe88c;
    object-fit: cover;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
    margin-bottom: 23px;
}

.feature-title {
    font-family: 'SF Pro Heavy', sans-serif;
    font-size: 17.6px;
    color: #fff;
    line-height: 26.4px;
    margin: 10px 0;
}

.feature-description {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 14.4px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 21.6px;
}

/* Schedule Section */
.schedule-section {
    background: #1a1a1a;
    padding: 100px 190px;
    min-height: 894px;
    position: relative;
    scroll-margin-top: 100px;
}

.schedule-bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2086px;
    height: 894px;
    object-fit: cover;
}

.schedule-overlay {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2086px;
    height: 894px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}

.schedule-content {
    max-width: 835px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.schedule-number {
    width: 40px;
    height: 40px;
    background: #8a1c1c;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 16px;
    color: #fdebc5;
}

.schedule-text {
    flex: 1;
}

.schedule-item-title {
    font-family: 'SF Pro Black', sans-serif;
    font-size: 16px;
    color: #fdebc5;
    line-height: 24px;
    margin-bottom: 5px;
    background: linear-gradient(175deg, #ffe88c 17.641%, #ff9d00 70.934%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.schedule-item-description {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 15.2px;
    color: #aaa;
    line-height: 22.8px;
}

/* Scoring System Section */
.scoring-section {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 95.46px 190px;
    scroll-margin-top: 100px;
    min-height: 696px;
}

.scoring-content {
    max-width: 1523.85px;
    margin: 0 auto;
}

.scoring-subtitle {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.85;
}

.scoring-subtitle h3 {
    font-size: 18px;
    color: #fdebc5;
    margin-bottom: 12px;
}

.scoring-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1137.887px;
    margin: 0 auto;
}

.scoring-card {
    background: #1d1d1d;
    border-left: 4px solid #ffe88c;
    padding: 30px;
    min-height: 260px;
    height: auto;
}

/* 绗竴琛岋細3涓厓绱犳甯告樉绀猴紝榛樿鍗?鍒?*/

/* 绗簩琛岋細浣跨敤flexbox甯冨眬瀹炵幇绛夊垎闂磋窛锛堝乏鍙冲拰涓棿閮界瓑鍒嗭級 */
.scoring-row-2 {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
}

.scoring-row-2 .scoring-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.scoring-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.scoring-card-title {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 16px;
    color: #fff;
}

.scoring-card-title span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    margin-top: 5px;
}

.scoring-card-points {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 16px;
    color: #fdebc5;
}

.scoring-card-description {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 26px;
}

.scoring-official {
    grid-column: 1 / -1;
    padding: 34px 38px;
    background: linear-gradient(135deg, rgba(255, 232, 140, 0.1), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 232, 140, 0.28);
    border-left: 4px solid #ffe88c;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.scoring-official h3 {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 22px;
    color: #fdebc5;
    margin-bottom: 14px;
}

.scoring-official p + p {
    margin-top: 14px;
}

/* Leaderboard Section */
.leaderboard-section {
    background: #0a0a0a;
    padding: 100px 190px;
    min-height: 567px;
    position: relative;
}

.leaderboard-container {
    max-width: 1120px;
    margin: 0 auto;
    background: #1f1f20;
    border-radius: 4px;
    padding: 40px 32px;
}

.leaderboard-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #f3f9ff;
    line-height: 38.4px;
    margin-bottom: 20px;
}

.leaderboard-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #f3f9ff;
    line-height: 30px;
    margin-bottom: 40px;
}

.leaderboard-description h3 {
    font-size: 18px;
    color: #fdebc5;
    margin-bottom: 12px;
}

.leaderboard-description p + p {
    margin-top: 12px;
}

.leaderboard-preview {
    min-height: 390px;
    border: 1px solid rgba(255, 220, 126, 0.42);
    border-radius: 8px;
    background:
        radial-gradient(circle at 48% 46%, rgba(255, 198, 82, 0.32), transparent 23%),
        radial-gradient(circle at 50% 95%, rgba(255, 178, 56, 0.18), transparent 38%),
        linear-gradient(125deg, #050403 0%, #15110a 42%, #070605 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 -90px 130px rgba(0, 0, 0, 0.62),
        0 32px 80px rgba(0, 0, 0, 0.5);
    isolation: isolate;
}

.leaderboard-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(255, 232, 140, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 232, 140, 0.035) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(255, 232, 140, 0.16), transparent 52%);
    background-size: 46px 46px, 46px 46px, 100% 100%;
    opacity: 0.64;
}

.leaderboard-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 232, 140, 0.2) 45%, transparent 62%);
    transform: translateX(-120%);
    animation: leaderboardSheen 5.8s ease-in-out infinite;
}

.prize-preview {
    display: block;
}

.prize-backlight {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    width: 420px;
    height: 260px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(ellipse at center, rgba(255, 232, 140, 0.36), rgba(255, 170, 45, 0.11) 34%, transparent 68%);
    filter: blur(18px);
    animation: prizeBreath 3.8s ease-in-out infinite;
}

.prize-curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 50%;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(60, 38, 10, 0.3), rgba(255, 213, 120, 0.06)),
        repeating-linear-gradient(90deg, rgba(255, 232, 140, 0.055) 0 1px, transparent 1px 28px);
    backdrop-filter: blur(2px);
}

.curtain-left {
    left: 0;
    transform-origin: left center;
    animation: curtainOpenLeft 6.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.curtain-right {
    right: 0;
    transform-origin: right center;
    animation: curtainOpenRight 6.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.prize-rays {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.prize-rays span {
    position: absolute;
    left: 50%;
    bottom: 42%;
    width: 2px;
    height: 220px;
    background: linear-gradient(to top, rgba(255, 232, 140, 0.64), transparent);
    transform-origin: bottom center;
    opacity: 0;
    filter: blur(0.4px);
    animation: prizeRay 6.2s ease-in-out infinite;
}

.prize-rays span:nth-child(1) { transform: rotate(-30deg); }
.prize-rays span:nth-child(2) { transform: rotate(-15deg); animation-delay: 0.18s; }
.prize-rays span:nth-child(3) { transform: rotate(0deg); animation-delay: 0.36s; }
.prize-rays span:nth-child(4) { transform: rotate(15deg); animation-delay: 0.54s; }
.prize-rays span:nth-child(5) { transform: rotate(30deg); animation-delay: 0.72s; }

.prize-stage {
    position: absolute;
    z-index: 5;
    left: 42%;
    top: 50%;
    width: 360px;
    height: 280px;
    transform: translate(-50%, -50%);
}

.prize-halo {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 232, 140, 0.32);
    box-shadow:
        inset 0 0 38px rgba(255, 232, 140, 0.08),
        0 0 48px rgba(255, 184, 62, 0.18);
    animation: prizeHalo 8s linear infinite;
}

.prize-halo::before,
.prize-halo::after {
    content: '';
    position: absolute;
    inset: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 232, 140, 0.18);
}

.prize-halo::after {
    inset: 68px;
    border-color: rgba(255, 255, 255, 0.12);
}

.winner-trophy {
    position: absolute;
    left: 50%;
    top: 22px;
    width: 170px;
    height: 210px;
    transform: translateX(-50%);
    animation: trophyFloatX 4.6s ease-in-out infinite;
    filter: drop-shadow(0 22px 48px rgba(255, 190, 48, 0.34));
}

.winner-podium {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 300px;
    height: 120px;
    display: grid;
    grid-template-columns: 1fr 1.18fr 1fr;
    align-items: end;
    gap: 8px;
    transform: translateX(-50%);
    animation: podiumGlow 3.4s ease-in-out infinite;
}

.podium-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 232, 140, 0.36);
    background:
        linear-gradient(180deg, rgba(255, 232, 140, 0.18), rgba(255, 180, 40, 0.07) 44%, rgba(18, 12, 4, 0.86)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 74%, rgba(255, 255, 255, 0.08));
    box-shadow:
        inset 0 1px 20px rgba(255, 232, 140, 0.11),
        0 18px 42px rgba(0, 0, 0, 0.46);
    overflow: hidden;
}

.podium-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 232, 140, 0.22) 48%, transparent 70%);
    transform: translateX(-120%);
    animation: podiumSheen 4.8s ease-in-out infinite;
}

.step-one {
    height: 112px;
    border-radius: 8px 8px 18px 18px;
}

.step-two,
.step-three {
    height: 78px;
    border-radius: 7px 7px 14px 14px;
}

.podium-step span {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    color: rgba(253, 235, 197, 0.9);
}

.podium-step b {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 232, 140, 0.9);
    letter-spacing: 1.6px;
}

.prize-core {
    position: absolute;
    left: 50%;
    bottom: 42px;
    width: 118px;
    height: 150px;
    transform: translateX(-50%);
    animation: prizeRise 6.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.prize-core-top {
    width: 82px;
    height: 18px;
    margin: 0 auto -2px;
    border-radius: 50% 50% 8px 8px;
    background: linear-gradient(90deg, #6d430d, #ffe88c 48%, #b36a13);
    box-shadow: 0 0 34px rgba(255, 232, 140, 0.55);
}

.prize-core-body {
    height: 104px;
    border-radius: 18px 18px 10px 10px;
    background:
        linear-gradient(145deg, rgba(255, 248, 205, 0.86), rgba(255, 196, 72, 0.42) 38%, rgba(66, 38, 6, 0.74)),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    border: 1px solid rgba(255, 232, 140, 0.78);
    box-shadow:
        inset 0 0 26px rgba(255, 255, 255, 0.18),
        0 16px 56px rgba(255, 178, 56, 0.28),
        0 0 80px rgba(255, 232, 140, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-core-body span {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    color: #1b1104;
    letter-spacing: 1px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.prize-core-base {
    width: 128px;
    height: 24px;
    margin: -1px auto 0;
    border-radius: 6px 6px 18px 18px;
    background: linear-gradient(90deg, #4c2c07, #f8c45a 52%, #5f3609);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.52);
}

.prize-aperture {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 310px;
    height: 34px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(255, 232, 140, 0.9), rgba(255, 175, 44, 0.32) 36%, transparent 68%);
    filter: blur(1px);
    animation: apertureGlow 2.8s ease-in-out infinite;
}

.prize-particles span {
    position: absolute;
    z-index: 6;
    left: var(--x);
    top: var(--y);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffe88c;
    box-shadow: 0 0 16px rgba(255, 232, 140, 0.9);
    opacity: 0;
    animation: prizeParticle 5.2s ease-in-out infinite;
    animation-delay: var(--d);
}

.prize-particles span:nth-child(1) { --x: 18%; --y: 72%; --d: 0.1s; }
.prize-particles span:nth-child(2) { --x: 27%; --y: 32%; --d: 0.5s; }
.prize-particles span:nth-child(3) { --x: 38%; --y: 67%; --d: 0.9s; }
.prize-particles span:nth-child(4) { --x: 47%; --y: 24%; --d: 1.2s; }
.prize-particles span:nth-child(5) { --x: 56%; --y: 78%; --d: 0.3s; }
.prize-particles span:nth-child(6) { --x: 63%; --y: 34%; --d: 1.6s; }
.prize-particles span:nth-child(7) { --x: 72%; --y: 62%; --d: 0.8s; }
.prize-particles span:nth-child(8) { --x: 82%; --y: 41%; --d: 1.9s; }
.prize-particles span:nth-child(9) { --x: 15%; --y: 45%; --d: 2.3s; }
.prize-particles span:nth-child(10) { --x: 34%; --y: 82%; --d: 2.7s; }
.prize-particles span:nth-child(11) { --x: 68%; --y: 18%; --d: 3.1s; }
.prize-particles span:nth-child(12) { --x: 88%; --y: 76%; --d: 3.5s; }

.leaderboard-scan {
    position: absolute;
    left: 0;
    right: 0;
    top: -20%;
    z-index: 2;
    height: 110px;
    background: linear-gradient(to bottom, transparent, rgba(255, 220, 140, 0.16), transparent);
    filter: blur(0.5px);
    animation: leaderboardScan 4.8s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.leaderboard-orbit {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(255, 232, 140, 0.16);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
}

.orbit-one {
    width: 420px;
    height: 420px;
    animation: leaderboardOrbit 18s linear infinite;
}

.orbit-two {
    width: 250px;
    height: 250px;
    border-color: rgba(92, 154, 184, 0.18);
    animation: leaderboardOrbit 12s linear infinite reverse;
}

.leaderboard-slots {
    position: absolute;
    left: 34px;
    top: 46px;
    z-index: 3;
    width: min(42%, 430px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leaderboard-slot {
    display: grid;
    grid-template-columns: 38px 1fr 58px;
    gap: 14px;
    align-items: center;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    border-radius: 6px;
    animation: leaderboardPulse 2.8s ease-in-out infinite;
}

.leaderboard-slot:nth-child(2) {
    animation-delay: 0.35s;
}

.leaderboard-slot:nth-child(3) {
    animation-delay: 0.7s;
}

.leaderboard-slot span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(253, 235, 197, 0.86);
    letter-spacing: 1px;
}

.leaderboard-slot i,
.leaderboard-slot b {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 232, 140, 0.48), rgba(255, 255, 255, 0.12));
}

.leaderboard-slot b {
    height: 18px;
    background: rgba(255, 232, 140, 0.18);
    border: 1px solid rgba(255, 232, 140, 0.2);
}

.leaderboard-lockup {
    position: absolute;
    right: 42px;
    top: 50%;
    z-index: 7;
    width: min(36%, 360px);
    transform: translateY(-50%);
}

.leaderboard-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(253, 235, 197, 0.78);
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.leaderboard-coming {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    line-height: 43px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 232, 140, 0.18);
    margin-bottom: 12px;
}

.leaderboard-lockup p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 22px;
}

.leaderboard-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(255, 232, 140, 0.28);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 232, 140, 0.16), rgba(255, 232, 140, 0.06));
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(253, 235, 197, 0.92);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@keyframes prizeBreath {
    0%, 100% {
        opacity: 0.62;
        transform: translate(-50%, -50%) scale(0.94);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes curtainOpenLeft {
    0%, 18% {
        transform: translateX(0);
        opacity: 0.92;
    }
    52%, 100% {
        transform: translateX(-34%);
        opacity: 0.34;
    }
}

@keyframes curtainOpenRight {
    0%, 18% {
        transform: translateX(0);
        opacity: 0.92;
    }
    52%, 100% {
        transform: translateX(34%);
        opacity: 0.34;
    }
}

@keyframes prizeRay {
    0%, 25% {
        opacity: 0;
        height: 90px;
    }
    48%, 70% {
        opacity: 0.72;
        height: 230px;
    }
    100% {
        opacity: 0;
        height: 170px;
    }
}

@keyframes prizeHalo {
    to {
        transform: rotate(360deg);
    }
}

@keyframes prizeRise {
    0%, 22% {
        opacity: 0.16;
        transform: translateX(-50%) translateY(38px) scale(0.86);
        filter: blur(1px);
    }
    48%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes apertureGlow {
    0%, 100% {
        opacity: 0.58;
        transform: translateX(-50%) scaleX(0.82);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.08);
    }
}

@keyframes prizeParticle {
    0%, 24% {
        opacity: 0;
        transform: translateY(18px) scale(0.6);
    }
    46% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-58px) scale(1);
    }
}

@keyframes heroBeam {
    0%, 100% {
        opacity: 0.45;
        transform: translateX(-50%) scaleX(0.82);
    }
    50% {
        opacity: 0.95;
        transform: translateX(-50%) scaleX(1.12);
    }
}

@keyframes heroRingSpin {
    to {
        transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg);
    }
}

@keyframes trophyFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-12px) scale(1.02);
    }
}

.winner-trophy .trophy-cup,
.winner-trophy .trophy-stem,
.winner-trophy .trophy-base {
    transform-origin: center;
}

@keyframes trophyFloatX {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-12px) scale(1.02);
    }
}

@keyframes heroSpark {
    0%, 28% {
        opacity: 0;
        transform: translateY(18px) scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-62px) scale(1);
    }
}

@keyframes podiumGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 198, 82, 0.16));
    }
    50% {
        filter: drop-shadow(0 0 28px rgba(255, 198, 82, 0.36));
    }
}

@keyframes podiumSheen {
    0%, 44% {
        transform: translateX(-120%);
    }
    70%, 100% {
        transform: translateX(120%);
    }
}

.leaderboard-status span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffe88c;
    box-shadow: 0 0 18px rgba(255, 232, 140, 0.92);
    animation: leaderboardStatus 1.6s ease-in-out infinite;
}

@keyframes leaderboardSheen {
    0%, 42% {
        transform: translateX(-120%);
        opacity: 0;
    }
    52% {
        opacity: 1;
    }
    76%, 100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes leaderboardScan {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    12%, 72% {
        opacity: 1;
    }
    100% {
        transform: translateY(430px);
        opacity: 0;
    }
}

@keyframes leaderboardOrbit {
    to {
        transform: translate(-50%, -50%) rotate(348deg);
    }
}

@keyframes leaderboardPulse {
    0%, 100% {
        opacity: 0.56;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(8px);
    }
}

@keyframes leaderboardStatus {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.55;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.leaderboard-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox - 鏄剧ず婊氬姩鏉?*/
    -ms-overflow-style: auto; /* IE and Edge - 鏄剧ず婊氬姩鏉?*/
}

.leaderboard-table-wrapper::-webkit-scrollbar {
    display: block; /* Chrome, Safari, Opera - 鏄剧ず婊氬姩鏉?*/
    height: 8px;
}

.leaderboard-table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.leaderboard-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.leaderboard-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    min-width: 800px;
}

.leaderboard-table thead {
    background: #79603c;
    height: 22.4px;
}

.leaderboard-table tbody tr {
    height: 32px;
}

.leaderboard-table th {
    padding: 8px 12px;
    text-align: left;
    font-size: 12px;
    color: #1f1f20;
    font-weight: normal;
    white-space: nowrap;
}

.leaderboard-table th:nth-child(1) {
    width: 100px;
}

.leaderboard-table th:nth-child(2) {
    width: 332px;
}

.leaderboard-table th:nth-child(3) {
    width: 197px;
}

.leaderboard-table th:nth-child(4) {
    width: 164px;
}

.leaderboard-table th:nth-child(5) {
    width: 264px;
}

.leaderboard-table td {
    padding: 8px 12px;
    font-size: 12px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.leaderboard-table tbody tr {
    background: transparent;
    transition: background 0.2s;
}

.leaderboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.leaderboard-table tbody tr.blur-row {
    filter: blur(150px);
    opacity: 0.7;
}

.leaderboard-table-wrapper.blurred {
    position: relative;
}

.leaderboard-table-wrapper.blurred .leaderboard-table {
    filter: blur(150px);
    pointer-events: none;
}

.leaderboard-table-wrapper.blurred::after {
    content: "Related information will be updated later";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
    pointer-events: auto;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.country-flag {
    width: 40px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
}

.broker-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Contestants Section */
.contestants-section {
    background: #0a0a0a;
    padding: 100px 190px;
    min-height: 567px;
    position: relative;
}

.contestants-container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.contestants-content {
    flex: 0 0 464px;
    background: #0a0a0a;
    padding: 0;
}

.contestants-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    line-height: 40px;
    margin-bottom: 40px;
}

.contestants-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    margin-bottom: 40px;
}

.contestants-cards {
    flex: 1;
    display: flex;
    gap: 24px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
}

.contestants-cards:active {
    cursor: grabbing;
}

.contestants-cards-wrapper {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.contestants-cards-wrapper.auto-scrolling {
    transition: transform 0.1s linear;
}

.contestants-cards-wrapper.dragging {
    transition: none;
}

.contestant-card {
    flex: 0 0 298px;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contestant-card:hover {
    transform: scale(1.05);
}

.contestant-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contestant-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 215px;
    background: linear-gradient(to top, #0a0a0a 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.contestant-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 24px;
    color: #fed365;
    line-height: 40px;
    margin-bottom: 5px;
}

.contestant-country {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}

/* Contestant Modal */
.contestant-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.contestant-modal.active {
    display: flex;
}

.contestant-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.contestant-modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.contestant-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10002;
}

.contestant-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contestant-modal-body {
    display: flex;
    gap: 40px;
    padding: 40px;
}

.contestant-modal-image {
    flex: 0 0 300px;
}

.contestant-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contestant-modal-info {
    flex: 1;
}

.contestant-modal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contestant-modal-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #fed365;
    margin-bottom: 10px;
}

.contestant-modal-country {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #999;
}

.contestant-modal-bio h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.contestant-modal-bio p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    white-space: pre-line;
}

@media screen and (max-width: 1680px) {
    
    
    .contestants-title br {
        display: none;
    }
}

@media (max-width: 768px) {
    .contestant-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .contestant-modal-body {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .contestant-modal-image {
        flex: 0 0 auto;
    }
    
    .contestant-modal-name {
        font-size: 24px;
    }
    
    .contestant-modal-bio h3 {
        font-size: 18px;
    }
    
    .contestant-modal-bio p {
        font-size: 14px;
    }
}

/* Prize Section */
.prize-section {
    padding: 80px 190px;
    min-height: 768.6px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.prize-bg {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1928.409px;
    height: 826.461px;
    object-fit: cover;
}

.prize-content {
    max-width: 1523.85px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prize-box {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 232, 140, 0.18), transparent 34%),
        linear-gradient(17.26deg, rgba(9, 27, 48, 0.82) 14.645%, rgba(8, 16, 28, 0.82) 85.355%);
    backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 232, 140, 0.72);
    border-radius: 24px;
    padding: 56px 64px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.prize-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #ffe88c;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.prize-amount {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 56px;
    line-height: 68px;
    color: #fdebc5;
    background: linear-gradient(169.6deg, #ffe88c 17.641%, #ff9d00 70.934%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.prize-subtitle {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 24px;
    color: #fff4d2;
    margin-bottom: 24px;
}

.prize-description {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 17px;
    color: #ddd;
    line-height: 28px;
    max-width: 920px;
    margin: 0 auto 16px;
}

.prize-description-wide {
    color: #c8d3df;
    max-width: 1040px;
}

.prize-note {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 17px;
    color: #f7d879;
    line-height: 28px;
    max-width: 940px;
    margin: 34px auto 0;
}

.champion-award-card {
    margin: 36px auto 0;
    max-width: 1040px;
    padding: 28px;
    border: 1px solid rgba(255, 232, 140, 0.38);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 232, 140, 0.13), rgba(255, 255, 255, 0.03) 48%, rgba(0, 145, 255, 0.08)),
        rgba(4, 13, 24, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.champion-award-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 232, 140, 0.22);
    text-align: left;
}

.champion-medal {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 34px;
    background: radial-gradient(circle, rgba(255, 232, 140, 0.25), rgba(255, 157, 0, 0.08));
    border: 1px solid rgba(255, 232, 140, 0.36);
}

.champion-rank-label {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: #cbd6e1;
    margin-bottom: 4px;
}

.champion-rank-title {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 28px;
    color: #fff7d8;
    line-height: 34px;
}

.prize-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.prize-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 78px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
    text-align: left;
}

.prize-benefit-highlight {
    border-color: rgba(255, 232, 140, 0.52);
    background: linear-gradient(135deg, rgba(255, 232, 140, 0.16), rgba(255, 157, 0, 0.06));
}

.prize-benefit-wide {
    grid-column: span 2;
}

.benefit-icon {
    flex: 0 0 30px;
    font-size: 24px;
    line-height: 30px;
}

.prize-benefit p {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: #e5edf5;
    line-height: 24px;
}

/* Premium 3D award redesign */
.premium-reveal {
    min-height: 420px;
    border: 1px solid rgba(255, 215, 116, 0.5);
    border-radius: 10px;
    background: #050608;
}

.premium-reveal::before {
    z-index: 2;
    background:
        radial-gradient(circle at 42% 42%, rgba(255, 220, 116, 0.22), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 28%, transparent 64%, rgba(0, 0, 0, 0.78));
    opacity: 1;
}

.premium-reveal::after {
    z-index: 8;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.04) 38%, rgba(255, 232, 140, 0.28) 48%, rgba(255, 255, 255, 0.06) 58%, transparent 72%);
    animation: premiumMetalSweep 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.leaderboard-render {
    position: absolute;
    inset: -8% -5%;
    z-index: 0;
    width: 110%;
    height: 116%;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.08) brightness(0.92);
    transform: scale(1.02);
    animation: renderBreath 7s ease-in-out infinite;
}

.premium-reveal .prize-backlight {
    z-index: 3;
    width: 540px;
    height: 320px;
    left: 42%;
    background: radial-gradient(ellipse at center, rgba(255, 224, 132, 0.22), rgba(255, 172, 44, 0.08) 38%, transparent 68%);
}

.premium-reveal .prize-curtain {
    z-index: 4;
    width: 36%;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(8, 18, 32, 0.32), transparent),
        repeating-linear-gradient(90deg, rgba(255, 232, 140, 0.04) 0 1px, transparent 1px 42px);
    opacity: 0.72;
}

.premium-reveal .curtain-right {
    background:
        linear-gradient(270deg, rgba(0, 0, 0, 0.92), rgba(8, 18, 32, 0.32), transparent),
        repeating-linear-gradient(90deg, rgba(255, 232, 140, 0.04) 0 1px, transparent 1px 42px);
}

.premium-reveal .prize-rays span {
    bottom: 26%;
    height: 260px;
    opacity: 0;
    background: linear-gradient(to top, rgba(255, 232, 140, 0.42), transparent);
}

.leaderboard-hud-panel {
    position: absolute;
    left: 32px;
    top: 34px;
    z-index: 7;
    width: min(34%, 330px);
    display: grid;
    gap: 12px;
}

.hud-row {
    display: grid;
    grid-template-columns: 32px 1fr 70px;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    background: rgba(3, 8, 14, 0.52);
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: hudFloat 3.8s ease-in-out infinite;
}

.hud-row:nth-child(2) {
    animation-delay: 0.35s;
}

.hud-row:nth-child(3) {
    animation-delay: 0.7s;
}

.hud-row span,
.hud-row b {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 244, 210, 0.78);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hud-row b {
    color: #fff;
    letter-spacing: 0;
}

.hud-row i {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 232, 140, 0.9), rgba(255, 232, 140, 0.16));
    box-shadow: 0 0 18px rgba(255, 214, 101, 0.24);
}

.metal-reveal-lines {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    z-index: 5;
    height: 80px;
    pointer-events: none;
}

.metal-reveal-lines span {
    position: absolute;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 232, 140, 0.46), transparent);
    transform: perspective(500px) rotateX(62deg);
    animation: revealLine 4.8s ease-in-out infinite;
}

.metal-reveal-lines span:nth-child(1) { bottom: 12px; opacity: 0.35; }
.metal-reveal-lines span:nth-child(2) { bottom: 36px; opacity: 0.26; animation-delay: 0.4s; }
.metal-reveal-lines span:nth-child(3) { bottom: 62px; opacity: 0.18; animation-delay: 0.8s; }

.premium-reveal .leaderboard-lockup {
    z-index: 9;
    right: 34px;
    width: min(38%, 390px);
    padding: 24px;
    border: 1px solid rgba(255, 232, 140, 0.24);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(5, 10, 18, 0.66), rgba(7, 20, 34, 0.34));
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.premium-reveal .leaderboard-kicker {
    color: #ffe88c;
}

.award-showcase {
    display: grid;
    grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
    gap: 44px;
    align-items: center;
    text-align: left;
    padding: 34px;
    overflow: hidden;
}

.award-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 42%, rgba(255, 232, 140, 0.18), transparent 26%),
        radial-gradient(circle at 78% 22%, rgba(0, 145, 255, 0.12), transparent 28%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 24%, transparent 74%, rgba(255, 232, 140, 0.08));
}

.award-visual,
.award-copy {
    position: relative;
    z-index: 1;
}

.award-visual {
    min-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 232, 140, 0.3);
    background: #050608;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.award-visual-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    filter: saturate(1.18) contrast(1.08) brightness(1.04);
    transform: scale(1.015);
    animation: renderBreath 7s ease-in-out infinite;
}

.award-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent 44%, rgba(0, 0, 0, 0.54)),
        radial-gradient(circle at 50% 44%, transparent 0 24%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.award-visual-sheen {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 232, 140, 0.18) 48%, transparent 62%);
    transform: translateX(-120%);
    animation: premiumMetalSweep 5.4s ease-in-out infinite;
}

.award-chip {
    position: absolute;
    z-index: 3;
    left: auto;
    right: 22px;
    min-width: 230px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 232, 140, 0.36);
    border-radius: 10px;
    background: rgba(4, 9, 16, 0.64);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.chip-prize {
    top: 24px;
    bottom: auto;
}

.chip-aum {
    bottom: 24px;
}

.award-chip span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: rgba(255, 244, 210, 0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.award-chip b {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #ffe88c;
    letter-spacing: 0;
}

.award-copy .prize-label {
    margin-bottom: 18px;
}

.award-copy .prize-amount {
    font-size: clamp(42px, 4.4vw, 68px);
    line-height: 1.04;
    margin-bottom: 12px;
}

.award-copy .prize-subtitle {
    color: #fff;
    margin-bottom: 26px;
}

.award-copy .prize-description {
    margin: 0 0 28px;
    max-width: 680px;
    color: #d9e2ea;
}

.award-benefits {
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
}

.award-benefit {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 48px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: #eef4fb;
    line-height: 23px;
}

.award-benefit span {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 2px;
    background: linear-gradient(135deg, #fff5c9, #ffb52b);
    box-shadow: 0 0 18px rgba(255, 213, 91, 0.48);
    transform: rotate(45deg);
}

.award-copy .prize-note {
    margin: 0;
    max-width: 680px;
    color: #ffe88c;
    text-align: left;
}

.hero-award {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(105deg, transparent 18%, rgba(255, 232, 140, 0.08) 48%, transparent 72%),
        radial-gradient(circle at 50% 44%, rgba(255, 232, 140, 0.12), transparent 32%);
    opacity: 0.62;
    animation: heroPremiumBreath 8s ease-in-out infinite;
}

.premium-reveal .leaderboard-lockup {
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
}

.premium-reveal .leaderboard-lockup::before {
    content: '';
    position: absolute;
    inset: -18px -18px -20px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.52), transparent 68%);
    filter: blur(10px);
}

.award-visual {
    display: flex;
    align-items: flex-end;
}

.award-visual::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 47%;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.44) 56%, transparent),
        radial-gradient(ellipse at 50% 92%, rgba(255, 191, 52, 0.2), transparent 58%);
    pointer-events: none;
}

.award-chip {
    position: relative;
    z-index: 4;
    inset: auto;
    min-width: 0;
    flex: 1 1 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.82);
}

.chip-prize,
.chip-aum {
    top: auto;
    bottom: auto;
}

.award-visual .award-chip {
    margin-bottom: 24px;
}

.award-visual .chip-prize {
    margin-left: 30px;
    margin-right: 18px;
    padding-left: 18px;
    border-left: 2px solid rgba(255, 213, 91, 0.72);
}

.award-visual .chip-aum {
    margin-left: 18px;
    margin-right: 30px;
    padding-right: 18px;
    border-right: 2px solid rgba(255, 213, 91, 0.72);
    text-align: right;
}

.award-chip span {
    color: rgba(255, 239, 185, 0.9);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-shadow: 0 0 14px rgba(255, 183, 42, 0.35);
}

.award-chip b {
    display: block;
    font-size: clamp(24px, 2.05vw, 34px);
    line-height: 1.05;
    color: #fff0a8;
    background: linear-gradient(180deg, #fff9cf 0%, #ffd65c 46%, #ff9f16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 24px rgba(255, 184, 38, 0.28), 0 5px 22px rgba(0, 0, 0, 0.9);
}

@keyframes heroPremiumBreath {
    0%, 100% {
        opacity: 0.46;
        transform: scale(1);
    }
    50% {
        opacity: 0.74;
        transform: scale(1.02);
    }
}

@keyframes renderBreath {
    0%, 100% {
        transform: scale(1.03);
        filter: saturate(1.1) contrast(1.05) brightness(0.96);
    }
    50% {
        transform: scale(1.07);
        filter: saturate(1.18) contrast(1.1) brightness(1.04);
    }
}

@keyframes premiumMetalSweep {
    0%, 18% {
        transform: translateX(-125%);
        opacity: 0;
    }
    42% {
        opacity: 1;
    }
    72%, 100% {
        transform: translateX(125%);
        opacity: 0;
    }
}

@keyframes hudFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.72;
    }
    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

@keyframes revealLine {
    0%, 100% {
        transform: perspective(500px) rotateX(62deg) scaleX(0.72);
    }
    50% {
        transform: perspective(500px) rotateX(62deg) scaleX(1);
    }
}

/* Partners Section */
.partners-section {
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 232, 140, 0.06), transparent 34%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.035));
    padding: 87.86px 190px 96px;
    min-height: 520px;
}

.partners-content {
    max-width: 1523.85px;
    margin: 0 auto;
    text-align: center;
}

.partners-subtitle {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
    align-items: start;
    gap: 42px 56px;
    max-width: 1120px;
    margin: 0 auto;
}

.partners-logo-grid {
    padding: 10px 0 0;
}

.partner-logo-item {
    width: 100%;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.partner-logo-item img {
    display: block;
    width: min(100%, 218px);
    height: 72px;
    object-fit: contain;
    opacity: 0.94;
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.08));
}

.partner-logo-item:first-child img {
    width: min(100%, 238px);
    height: 88px;
}

.partner-logo-item:nth-child(5) img {
    width: min(100%, 244px);
    height: 86px;
}

.partner-name {
    display: block;
    max-width: 300px;
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 0 14px rgba(215, 167, 85, 0.12);
}

/* Footer CTA Section */
.footer-cta-section {
    background: #000;
    padding: 50.26px 190px;
    position: relative;
    scroll-margin-top: 100px;
    min-height: 200px;
}

.footer-cta-box {
    max-width: 1524px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    margin-bottom: 100px;
}

.footer-cta-title {
    font-family: 'SF Pro Black', sans-serif;
    font-size: 32px;
    color: #fff;
    line-height: 48px;
    margin-bottom: 20px;
}

.footer-cta-button {
    background: linear-gradient(148.37deg, #ffe88c 17.641%, #ff9d00 70.934%);
    padding: 9px 33px;
    border-radius: 8px;
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 14.4px;
    color: #000;
    letter-spacing: 1px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 232, 140, 0.3);
}

.footer-bottom {
    max-width: 1549.209px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 14.4px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.footer-disclaimer {
    font-family: 'SF Pro Regular', sans-serif;
    max-width: 1080px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.46);
    line-height: 21px;
}

.footer-disclaimer h3 {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 14px;
    color: rgba(255, 232, 140, 0.72);
    margin-bottom: 10px;
}

.footer-disclaimer p {
    font-size: 12.8px;
    margin-bottom: 10px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav-links a:hover {
    color: #ffe88c;
}

/* Privacy Policy Page */
.privacy-page {
    min-height: 100%;
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 232, 140, 0.12), transparent 34%),
        radial-gradient(circle at 12% 20%, rgba(0, 145, 255, 0.12), transparent 28%),
        #070707;
}

.privacy-nav {
    position: fixed;
}

.privacy-main {
    width: 100%;
    padding: 150px 190px 80px;
}

.privacy-hero {
    max-width: 1100px;
    margin: 0 auto 34px;
    text-align: center;
}

.privacy-kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #ffe88c;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.privacy-hero h1 {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 56px;
    line-height: 68px;
    color: #fff;
    margin-bottom: 16px;
}

.privacy-updated {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 16px;
    color: #aeb8c2;
}

.privacy-document {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 64px;
    border: 1px solid rgba(255, 232, 140, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 232, 140, 0.08), rgba(255, 255, 255, 0.035) 44%, rgba(0, 145, 255, 0.06)),
        rgba(8, 16, 28, 0.72);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.privacy-document section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-document h2 {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 24px;
    color: #ffe88c;
    line-height: 32px;
    margin-bottom: 14px;
}

.privacy-document p,
.privacy-document li {
    font-family: 'SF Pro Regular', sans-serif;
    font-size: 17px;
    color: #d6dee7;
    line-height: 30px;
}

.privacy-document p {
    margin-bottom: 16px;
}

.privacy-document p:last-child {
    margin-bottom: 0;
}

.privacy-document ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 18px;
    padding-left: 22px;
}

.privacy-document li::marker {
    color: #ffe88c;
}

.privacy-footer {
    min-height: auto;
    padding-top: 34px;
}

/* Contact Page */
.contact-page {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 210, 92, 0.13), transparent 28%),
        radial-gradient(circle at 14% 62%, rgba(0, 118, 201, 0.16), transparent 34%),
        linear-gradient(180deg, #020407 0%, #07111b 54%, #020407 100%);
}

.contact-main {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 210px);
    overflow: hidden;
}

.contact-main::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 64px 0 auto;
    height: 650px;
    background: url("./images/contact-global-map-bg.svg") center top / min(1320px, 94vw) auto no-repeat;
    opacity: 0.86;
    pointer-events: none;
}

.contact-main::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 4, 7, 0.56) 0%, rgba(2, 4, 7, 0.18) 32%, rgba(2, 4, 7, 0.72) 100%),
        radial-gradient(circle at 50% 40%, transparent 0 28%, rgba(2, 4, 7, 0.56) 66%);
    pointer-events: none;
}

.contact-hero {
    margin-bottom: 44px;
}

.contact-document {
    max-width: 1040px;
    padding: 46px 52px;
    border-color: rgba(255, 220, 120, 0.24);
    background:
        linear-gradient(145deg, rgba(255, 220, 120, 0.09), rgba(255, 255, 255, 0.03) 38%, rgba(16, 74, 112, 0.18)),
        rgba(3, 8, 14, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 42px 110px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.contact-document > p:first-child {
    max-width: 760px;
    color: #e6eef6;
}

.contact-card {
    position: relative;
    margin: 34px 0 28px;
    padding: 34px;
    border: 1px solid rgba(255, 232, 140, 0.26);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 232, 140, 0.08), rgba(6, 19, 32, 0.78) 46%, rgba(3, 8, 14, 0.92)),
        rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 48px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.contact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 232, 140, 0.11), transparent);
    transform: translateX(-115%);
    animation: contactCardSweep 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes contactCardSweep {
    0%, 35% {
        transform: translateX(-115%);
    }
    60%, 100% {
        transform: translateX(115%);
    }
}

.contact-card-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card-header img {
    width: 132px;
    height: 64px;
    object-fit: contain;
    flex: 0 0 auto;
}

.contact-card-header h2 {
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 24px;
    color: #fff4d2;
    line-height: 32px;
    margin-bottom: 4px;
}

.contact-card-header p {
    color: #aeb8c2;
    margin: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-method {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 94px;
    padding: 20px;
    border: 1px solid rgba(255, 232, 140, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 232, 140, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(4, 9, 16, 0.56);
    text-decoration: none;
    transition: transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
    z-index: 1;
}

.contact-method:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 232, 140, 0.56);
    background:
        linear-gradient(135deg, rgba(255, 232, 140, 0.13), rgba(255, 255, 255, 0.035)),
        rgba(4, 9, 16, 0.72);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.contact-method span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 244, 190, 0.28), rgba(255, 199, 74, 0.09) 54%, rgba(255, 199, 74, 0.03)),
        rgba(3, 8, 14, 0.75);
    border: 1px solid rgba(255, 232, 140, 0.34);
    color: #ffe88c;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.contact-method span svg {
    width: 24px;
    height: 24px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 216, 107, 0.28));
}

.contact-method b {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #ffe88c;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-method p {
    margin: 0;
    color: #fff;
    line-height: 24px;
    word-break: break-word;
}



@media (max-width: 1600px) {
    .what-is-section,
    .positioning-section,
    .why-participate-section,
    .schedule-section,
    .scoring-section,
    .leaderboard-section,
    .contestants-section,
    .prize-section,
    .partners-section,
    .footer-cta-section {
        padding-left: 50px;
        padding-right: 50px;
    }
    
    .contestants-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contestants-content {
        flex: 1;
    }
    
    .contestants-cards {
        width: 100%;
        overflow: hidden;
    }
    
    /* 绉婚櫎鍔ㄧ敾锛屼娇鐢ㄦ嫋鎷藉姛鑳?*/
}

@media (max-width: 1200px) {
    .cards-grid,
    .features-grid {
        flex-wrap: wrap;
    }
    
    .card {
        min-width: 300px;
    }
    
    .scoring-section {
        padding: 60px 40px;
    }
    
    .scoring-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .scoring-card:nth-child(1),
    .scoring-card:nth-child(2) {
        grid-column: span 1;
    }
    
    /* 绗?涓崱鐗囧崰鎹浜岃绗竴鍒?*/
    .scoring-card:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    
    /* scoring-row-2 涓嶅崰鎹綉鏍间綅缃紝璁╁瓙鍏冪礌鍗曠嫭瀹氫綅 */
    .scoring-row-2 {
        display: contents;
    }
    
    /* scoring-row-2 涓殑绗竴涓崱鐗囧湪绗簩琛岀浜屽垪 */
    .scoring-row-2 .scoring-card:first-child {
        grid-column: 2;
        grid-row: 2;
    }
    
    /* scoring-row-2 涓殑绗簩涓崱鐗囧湪绗笁琛岀涓€鍒?*/
    .scoring-row-2 .scoring-card:last-child {
        grid-column: 1;
        grid-row: 3;
    }
    
    .scoring-row-2 .scoring-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .scoring-row-2 {
        flex-direction: column;
    }
    
    .scoring-row-2 .scoring-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
}

/* 骞虫澘閫傞厤 */
@media (max-width: 1024px) {
    .nav {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .nav-logo-text {
        font-size: 20px;
    }
    
    .hero {
        height: 600px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-description {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .what-is-section,
    .positioning-section,
    .why-participate-section,
    .schedule-section,
    .prize-section,
    .partners-section,
    .footer-cta-section {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .scoring-section {
        padding: 60px 30px;
    }
    
    .scoring-grid {
        max-width: 100%;
    }
    
    .positioning-section {
        flex-direction: column;
    }
    
    .positioning-image {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 30px;
    }
    
    /* Leaderboard Image 骞虫澘閫傞厤 */
    .leaderboard-image {
        img {
            width: 100%;
            height: auto;
        }
        
        .leaderboard-blurred {
            img {
                width: 180px;
            }
            
            p {
                font-size: 18px;
                line-height: 26px;
            }
        }
    }
}

/* 绉诲姩绔€傞厤 */
@media (max-width: 768px) {
    .nav {
        width: 100%;
        height: 60px;
        padding: 0 15px;
        position: fixed;
        z-index: 1000;
        left: 0;
        transform: none;
    }
    
    .nav > div:last-child {
        min-width: auto;
    }
    
    .nav-logo {
        gap: 10px;
    }
    
    .nav-logo-image {
        width: 72px;
        height: 36px;
    }
    
    .nav-logo-text {
        font-size: 18px;
        line-height: 24px;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 12px;
        gap: 5px;
        padding: 3px;
    }

    .language-toggle {
        min-width: 30px;
        height: 24px;
        font-size: 11px;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        z-index: 998;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 18px;
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-menu-toggle {
        display: flex;
        z-index: 999;
    }
    
    /* 娣诲姞閬僵灞?*/
    .nav-overlay {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 997;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        margin-top: 60px;
        height: 500px;
    }
    
    .hero-overlay {
        width: 100%;
        left: 0;
        transform: none;
        height: 100%;
    }

    .hero-award {
        top: 48%;
        width: 300px;
        height: 300px;
        opacity: 0.54;
        transform: translate(-50%, -50%) scale(0.78);
    }

    .hero-podium {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 28px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
        padding: 0 20px;
    }
    
    .hero-description {
        font-size: 24px;
        padding: 0 20px;
    }
    
    .hero-text {
        font-size: 14px;
        line-height: 24px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Section閫氱敤鏍峰紡 */
    .section-title {
        font-size: 24px;
        gap: 20px;
    }
    
    .section-title-line {
        width: 40px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* What is WRGI Section */
    .what-is-section {
        padding: 40px 20px;
    }

    .what-is-video-wrapper {
        margin-top: 24px;
        border-radius: 10px;
    }
    
    .cards-grid {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }
    
    .card {
        width: 100%;
        height: auto;
        min-height: 280px;
    }
    
    .card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .card-title {
        font-size: 22px;
        line-height: 1.18;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .what-is-text {
        font-size: 14px;
        line-height: 24px;
        padding: 0 10px;
    }
    
    /* Positioning Section */
    .positioning-section {
        padding: 40px 20px;
        flex-direction: column;
    }
    
    .positioning-content {
        max-width: 100%;
    }
    
    .positioning-title {
        font-size: 24px;
        line-height: 36px;
    }
    
    .positioning-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .positioning-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }
    
    /* Why Participate Section */
    .why-participate-section {
        padding: 40px 20px;
    }
    
    .why-participate-bg {
        width: 100%;
        height: auto;
        max-width: 400px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .feature-card {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .feature-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .feature-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .feature-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    /* Schedule Section */
    .schedule-section {
        padding: 40px 20px;
    }
    
    .schedule-bg,
    .schedule-overlay {
        width: 100%;
        left: 0;
        transform: none;
    }
    
    .schedule-content {
        max-width: 100%;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .schedule-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .schedule-item-title {
        font-size: 14px;
    }
    
    .schedule-item-description {
        font-size: 13px;
    }
    
    /* Scoring Section */
    .scoring-section {
        padding: 40px 20px;
    }
    
    .scoring-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .scoring-card {
        height: auto;
        min-height: 0;
        padding: 20px;
    }
    
    .scoring-card-title {
        font-size: 15px;
    }
    
    .scoring-card-description {
        font-size: 13px;
        line-height: 22px;
    }
    
    /* 淇 scoring-row-2 鍦ㄧЩ鍔ㄧ鐨勬樉绀?*/
    .scoring-row-2 {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .scoring-row-2 .scoring-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    
    /* Leaderboard Section */
    .leaderboard-section {
        padding: 40px 20px;
    }
    
    .leaderboard-container {
        padding: 30px 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .leaderboard-container::-webkit-scrollbar {
        height: 8px;
    }
    
    .leaderboard-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .leaderboard-container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }
    
    .leaderboard-container::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .leaderboard-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .leaderboard-description {
        font-size: 14px;
        line-height: 24px;
    }
    
    /* Leaderboard Image 绉诲姩绔€傞厤 */
    .leaderboard-image {
        img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .leaderboard-blurred {
            padding: 20px;
            
            img {
                width: 150px;
                max-width: 100%;
            }
            
            p {
                font-size: 16px;
                line-height: 24px;
                text-align: center;
                padding: 0 10px;
            }
        }
    }
    
    .leaderboard-table-wrapper {
        scrollbar-width: thin; /* Firefox - 鏄剧ず婊氬姩鏉?*/
        -ms-overflow-style: auto; /* IE and Edge - 鏄剧ず婊氬姩鏉?*/
    }
    
    .leaderboard-table-wrapper::-webkit-scrollbar {
        display: block; /* Chrome, Safari, Opera - 鏄剧ず婊氬姩鏉?*/
        height: 8px;
    }
    
    .leaderboard-table-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .leaderboard-table-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }
    
    .leaderboard-table-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .leaderboard-table {
        font-size: 11px;
        min-width: 600px;
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 6px 8px;
    }
    
    .country-flag {
        width: 30px;
        height: 18px;
    }
    
    .broker-logo {
        height: 24px;
    }
    
    /* Contestants Section */
    .contestants-section {
        padding: 40px 20px;
    }
    
    .contestants-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .contestants-content {
        flex: 1;
    }
    
    .contestants-title {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    
    .contestants-description {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .contestants-cards {
        width: 100%;
        overflow: hidden;
    }
    
    .contestants-cards-wrapper {
        gap: 20px;
        /* 绉婚櫎鍔ㄧ敾锛屼娇鐢ㄦ嫋鎷?*/
    }
    
    .contestant-card {
        flex: 0 0 250px;
        height: 350px;
    }
    
    .contestant-name {
        font-size: 20px;
        line-height: 32px;
    }
    
    .contestant-country {
        font-size: 16px;
        line-height: 28px;
    }
    
    /* Prize Section */
    .prize-section {
        padding: 40px 20px;
    }
    
    .prize-bg {
        width: 100%;
        left: 0;
        transform: none;
    }
    
    .prize-box {
        padding: 30px 20px;
        border-radius: 18px;
    }
    
    .prize-amount {
        font-size: 36px;
        line-height: 48px;
    }

    .prize-subtitle {
        font-size: 20px;
        line-height: 28px;
    }
    
    .prize-description {
        font-size: 16px;
        line-height: 24px;
    }

    .champion-award-card {
        padding: 20px;
        border-radius: 14px;
    }

    .champion-award-rank {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
    }

    .champion-rank-title {
        font-size: 22px;
        line-height: 28px;
    }

    .prize-benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .prize-benefit-wide {
        grid-column: auto;
    }

    .prize-benefit {
        padding: 16px;
    }

    .prize-note {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Partners Section */
    .partners-section {
        padding: 40px 20px;
    }
    
    .partners-logos {
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 24px;
    }

    .partner-logo-item {
        min-height: 128px;
        gap: 10px;
    }

    .partner-logo-item img {
        width: min(100%, 190px);
        height: 66px;
    }

    .partner-logo-item:first-child img {
        width: min(100%, 204px);
        height: 78px;
    }

    .partner-logo-item:nth-child(5) img {
        width: min(100%, 204px);
        height: 76px;
    }

    .partner-name {
        max-width: 220px;
        font-size: 12.5px;
        line-height: 1.3;
    }
    
    /* Footer Section */
    .footer-cta-section {
        padding: 40px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-disclaimer {
        font-size: 11px;
        line-height: 16px;
    }
}

/* 灏忓睆鎵嬫満閫傞厤 */
@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .card-title {
        font-size: 20px;
        line-height: 1.18;
    }
    
    .prize-amount {
        font-size: 28px;
        line-height: 36px;
    }
    
    .nav-logo-text {
        font-size: 16px;
    }
    
    /* Leaderboard Image 灏忓睆鎵嬫満閫傞厤 */
    .leaderboard-image {
        .leaderboard-blurred {
            gap: 0px;
            img {
                width: 100px;
            }
            
            p {
                font-size: 12px;
                line-height: 20px;
                padding: 0px;
            }
        }
    }
}

@media (max-width: 768px) {
    .cards-grid .card {
        height: 320px;
        min-height: 320px;
    }

    .cards-grid .card img {
        height: 100%;
        object-fit: cover;
    }

    .leaderboard-preview {
        min-height: 560px;
    }

    .prize-backlight {
        top: 34%;
        width: 300px;
        height: 220px;
    }

    .prize-stage {
        left: 50%;
        top: 28%;
        transform: translate(-50%, -50%) scale(0.68);
    }

    .prize-curtain {
        width: 52%;
    }

    .leaderboard-lockup {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 34px;
        width: auto;
        transform: none;
    }

    .leaderboard-coming {
        font-size: 26px;
        line-height: 32px;
    }

    .leaderboard-lockup p {
        font-size: 13px;
        line-height: 22px;
    }

    .leaderboard-orbit {
        opacity: 0.64;
    }

    .prize-rays span {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .cards-grid .card {
        height: 300px;
        min-height: 300px;
    }
}

@media (max-width: 1200px) {
    .privacy-main {
        padding: 140px 50px 70px;
    }

    .privacy-document {
        padding: 44px;
    }
}

@media (max-width: 768px) {
    .privacy-main {
        padding: 118px 20px 50px;
    }

    .privacy-hero h1 {
        font-size: 38px;
        line-height: 46px;
    }

    .privacy-document {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .privacy-document h2 {
        font-size: 21px;
        line-height: 28px;
    }

    .privacy-document p,
    .privacy-document li {
        font-size: 15.5px;
        line-height: 26px;
    }
.footer-nav-links {
        row-gap: 6px;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .privacy-kicker {
        font-size: 12px;
    }

    .privacy-document ul {
        padding-left: 18px;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 22px 18px;
    }

    .contact-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-card-header h2 {
        font-size: 21px;
        line-height: 28px;
    }
}

@media (max-width: 1100px) {
    .award-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .award-visual {
        min-height: 420px;
    }

    .award-visual-img {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .premium-reveal {
        min-height: 640px;
    }

    .leaderboard-render {
        inset: 150px -44px auto -44px;
        width: calc(100% + 88px);
        height: 260px;
        object-position: center center;
        opacity: 0.96;
    }

    .leaderboard-hud-panel {
        left: 18px;
        right: 18px;
        top: 24px;
        width: auto;
    }

    .premium-reveal .leaderboard-lockup {
        left: 18px;
        right: 18px;
        bottom: 24px;
        top: auto;
        width: auto;
        transform: none;
        padding: 18px;
    }

    .award-showcase {
        padding: 20px;
    }

    .award-visual {
        min-height: 340px;
        border-radius: 16px;
    }

    .award-visual-img {
        min-height: 340px;
    }

    .award-chip {
        left: 16px;
        right: 16px;
        min-width: 190px;
        padding: 12px 14px;
    }

    .award-chip b {
        font-size: 16px;
    }

    .chip-prize {
        top: 16px;
        bottom: auto;
    }

    .chip-aum {
        bottom: 16px;
    }

    .award-copy .prize-amount {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .premium-reveal {
        min-height: 700px;
    }

    .hud-row {
        grid-template-columns: 28px 1fr;
    }

    .hud-row i {
        display: none;
    }

    .award-visual {
        min-height: 300px;
    }

    .award-visual-img {
        min-height: 300px;
    }

    .award-chip {
        right: 14px;
        left: 14px;
        min-width: 0;
    }

    .award-benefit {
        font-size: 14.5px;
        line-height: 21px;
    }
}

.award-showcase .award-chip {
    position: static;
    inset: auto;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.award-visual {
    display: block;
}

.award-metrics-strip {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 26px;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    gap: 34px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
}

.award-metrics-strip::before {
    content: '';
    position: absolute;
    left: -18px;
    right: -18px;
    bottom: -18px;
    height: 120px;
    z-index: -1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
    pointer-events: none;
}

.award-metrics-strip .award-chip {
    flex: 0 1 auto;
    margin: 0;
}

.award-metrics-strip .chip-aum {
    text-align: left;
}

@media (max-width: 768px) {
    .award-visual .award-chip {
        margin-bottom: 0;
    }

    .award-metrics-strip {
        left: 20px;
        right: 20px;
        bottom: 20px;
        gap: 22px;
    }

    .award-chip b {
        font-size: 15px;
    }
}

/* Premium globe hero */
.hero-globe-hero {
    height: clamp(720px, calc(100vh - 85px), 920px);
    min-height: 720px;
    background: #000;
    border-bottom: 1px solid rgba(255, 205, 88, 0.28);
    box-shadow: inset 0 -1px 0 rgba(255, 231, 169, 0.1);
}

.hero-globe-hero::before {
    display: none;
}

.hero-globe-hero::after {
    display: none;
}

.hero-glow {
    display: none;
}

.hero-glow-left {
    left: -12%;
    top: 16%;
    width: 420px;
    height: 420px;
    background: rgba(255, 184, 58, 0.13);
}

.hero-glow-right {
    right: 5%;
    top: 22%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255, 185, 54, 0.24);
}

.hero-globe-hero .hero-content {
    width: min(1380px, calc(100% - 96px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 34px;
    text-align: left;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 660px;
    padding-top: 18px;
}

.hero-copy::before {
    content: '';
    display: block;
    width: 86px;
    height: 3px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #ffbe3d, rgba(255, 232, 140, 0));
}

.hero-globe-hero .hero-subtitle {
    margin: 0 0 16px;
    color: #ffe7a6;
    font-family: 'SF Pro Bold', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-globe-hero .hero-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(76px, 7.2vw, 128px);
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.6), 0 0 34px rgba(255, 205, 88, 0.14);
}

.hero-globe-hero .hero-description {
    margin: 0 0 18px;
    color: rgba(255, 249, 230, 0.96);
    font-size: clamp(30px, 2.4vw, 44px);
    line-height: 1.14;
    font-family: 'SF Pro Black', sans-serif;
}

.hero-globe-hero .hero-text {
    max-width: 620px;
    margin: 0;
    padding: 0;
    color: rgba(233, 239, 244, 0.82);
    font-size: 18px;
    line-height: 1.85;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 28px;
    align-items: start;
    margin-top: 38px;
    max-width: 640px;
}

.hero-metrics div {
    position: relative;
    min-width: 0;
    padding: 0 30px 0 0;
    border: 0;
    background: none;
    box-shadow: none;
}

.hero-metrics div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(255, 220, 132, 0), rgba(255, 210, 92, 0.52), rgba(255, 220, 132, 0));
}

.hero-metrics span {
    display: block;
    color: #ffd76d;
    font-family: 'SF Pro Black', sans-serif;
    font-size: 32px;
    line-height: 1;
    text-shadow: 0 0 24px rgba(255, 190, 61, 0.18);
}

.hero-metrics p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.hero-globe-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 620px;
    opacity: 0.96;
    isolation: isolate;
    transform: translateX(42px);
}

.hero-globe-wrap::before {
    content: '';
    position: absolute;
    inset: -4% -12%;
    z-index: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 208, 106, 0.3) 0%, rgba(190, 113, 24, 0.18) 36%, rgba(0, 0, 0, 0.2) 58%, transparent 79%);
    filter: blur(34px);
    pointer-events: none;
}

.hero-globe-wrap::after {
    display: none;
}

.hero-globe-panel {
    position: relative;
    z-index: 1;
    width: min(720px, 50vw);
    height: min(720px, 50vw);
    min-width: 520px;
    min-height: 520px;
    cursor: grab;
    opacity: 0;
    animation: globePanelEnter 2600ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
    filter:
        drop-shadow(0 0 24px rgba(255, 214, 118, 0.26))
        drop-shadow(0 0 76px rgba(255, 177, 45, 0.18));
}

.hero-globe-panel:active {
    cursor: grabbing;
}

.hero-globe-panel::before {
    display: none;
}

.hero-globe-panel::after {
    display: none;
}

#globeCanvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    filter: brightness(1.12) drop-shadow(0 0 34px rgba(255, 202, 82, 0.28));
}

.globe-dot-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 225, 148, 0.36) 0 0.68px, transparent 0.98px),
        radial-gradient(circle, rgba(255, 176, 43, 0.18), transparent 66%);
    background-size: 7px 7px, 100% 100%;
    opacity: 0.56;
    mix-blend-mode: screen;
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.92) 0 38%, rgba(0, 0, 0, 0.68) 55%, rgba(0, 0, 0, 0.18) 72%, transparent 84%);
    pointer-events: none;
}

.callout-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.callout-line {
    fill: none;
    stroke: rgba(255, 218, 124, 0.44);
    stroke-width: 1;
    stroke-linecap: round;
    shape-rendering: crispEdges;
    vector-effect: non-scaling-stroke;
}

.callout-anchor {
    fill: rgba(255, 202, 85, 0.9);
    stroke: rgba(255, 244, 210, 0.86);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.node-label {
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffe8a8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow:
        0 0 14px rgba(255, 190, 70, 0.2),
        0 0 18px rgba(0, 0, 0, 0.92);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
    will-change: transform, opacity;
}

.node-label span {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffca55;
    box-shadow: 0 0 12px rgba(255, 202, 85, 0.75);
}

.label-access span,
.label-settlement span,
.label-venues span,
.label-mesh span {
    background: #f6e9b8;
    box-shadow: 0 0 12px rgba(255, 214, 110, 0.64);
}

.label-fx,
.label-settlement,
.label-access {
    flex-direction: row-reverse;
}

@keyframes globePanelEnter {
    from {
        opacity: 0;
        filter: blur(7px);
        transform: translateY(18px) scale(0.96);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1200px) {
    .hero-globe-hero {
        height: auto;
        min-height: 780px;
    }

    .hero-globe-hero .hero-content {
        width: min(100% - 60px, 1120px);
        grid-template-columns: 1fr 0.92fr;
        gap: 18px;
    }

    .hero-globe-panel {
        width: min(500px, 45vw);
        height: min(500px, 45vw);
        min-width: 420px;
        min-height: 420px;
    }

    .hero-globe-wrap {
        min-height: 520px;
    }
}

@media (max-width: 860px) {
    .hero-globe-hero {
        min-height: 820px;
        padding: 52px 0 46px;
    }

    .hero-globe-hero .hero-content {
        width: min(100% - 36px, 680px);
        grid-template-columns: 1fr;
        align-content: center;
        text-align: center;
    }

    .hero-copy {
        max-width: none;
        padding-top: 0;
    }

    .hero-copy::before {
        margin: 0 auto 20px;
    }

    .hero-globe-hero .hero-subtitle {
        font-size: 12px;
    }

    .hero-globe-hero .hero-title {
        font-size: clamp(54px, 14vw, 76px);
        padding: 0;
    }

    .hero-globe-hero .hero-description {
        font-size: 26px;
        padding: 0;
    }

    .hero-globe-hero .hero-text {
        max-width: 580px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 1.7;
        padding: 0;
    }

    .hero-metrics {
        margin: 26px auto 0;
    }

    .hero-globe-wrap {
        min-height: 360px;
        transform: none;
    }

    .hero-globe-panel {
        width: min(430px, 88vw);
        height: min(430px, 88vw);
        min-width: 0;
        min-height: 0;
    }

    .node-label {
        font-size: 10px;
    }
}

@media (max-width: 520px) {
    .hero-globe-hero {
        min-height: 760px;
        padding-top: 40px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-metrics div {
        padding: 0 0 16px;
    }

    .hero-metrics div:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: 0;
        width: 76px;
        height: 1px;
        transform: translateX(50%);
        background: linear-gradient(90deg, rgba(255, 220, 132, 0), rgba(255, 210, 92, 0.45), rgba(255, 220, 132, 0));
    }

    .hero-globe-wrap {
        min-height: 300px;
    }

    .hero-globe-panel {
        width: min(330px, 92vw);
        height: min(330px, 92vw);
    }

    .label-access,
    .label-settlement,
    .label-bridge {
        display: none;
    }
}

/* Current visual tuning */
.card img {
    filter: saturate(1.12) contrast(1.08) brightness(1.08);
}

.positioning-image {
    filter: saturate(1.04) contrast(1.08) brightness(0.78);
}

.positioning-section::after {
    background:
        linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.94) 28%, rgba(3, 3, 3, 0.68) 48%, rgba(3, 3, 3, 0.16) 76%, rgba(3, 3, 3, 0.42) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 76% 42%, rgba(255, 188, 58, 0.2), transparent 35%);
}

.feature-card img {
    width: 100%;
    height: 164px;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 213, 111, 0.28);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.035) inset,
        0 0 28px rgba(255, 187, 58, 0.12);
    filter: saturate(1.24) contrast(1.12) brightness(1.24);
}

.feature-card:nth-child(odd) {
    transform: translateY(10px);
}

.feature-card:nth-child(even) {
    transform: translateY(-12px);
}

.feature-card:nth-child(3) {
    transform: translateY(0);
}

.feature-card:nth-child(2) img,
.feature-card:nth-child(4) img {
    filter: saturate(1.28) contrast(1.16) brightness(1.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    height: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 226, 153, 0.24), transparent);
    mix-blend-mode: screen;
    opacity: 0.72;
    pointer-events: none;
}

.award-metrics-strip {
    left: 28px;
    right: 28px;
    bottom: 24px;
    gap: 42px;
}

.award-metrics-strip .award-chip {
    flex: 1 1 0;
    padding: 0 18px;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.95), 0 0 18px rgba(255, 184, 38, 0.24);
}

.award-metrics-strip .chip-prize {
    border-left: 2px solid rgba(255, 213, 91, 0.74);
}

.award-metrics-strip .chip-aum {
    border-left: 2px solid rgba(255, 213, 91, 0.74);
}

.award-metrics-strip .award-chip span {
    color: rgba(255, 241, 194, 0.94);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.award-metrics-strip .award-chip b {
    color: #fff070;
    font-size: clamp(28px, 2.15vw, 36px);
    line-height: 1;
    background: linear-gradient(180deg, #fffbd0 0%, #ffe05f 48%, #ff9d00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .award-metrics-strip {
        left: 18px;
        right: 18px;
        bottom: 18px;
        gap: 16px;
    }

    .award-metrics-strip .award-chip {
        padding: 0 0 0 12px;
    }

    .award-metrics-strip .award-chip span {
        font-size: 9px;
        letter-spacing: 0.1em;
        margin-bottom: 5px;
    }

    .award-metrics-strip .award-chip b {
        font-size: clamp(18px, 5vw, 24px);
    }
}

.contact-method-wide {
    grid-column: 1 / -1;
    min-height: 86px;
}

@media (max-width: 768px) {
    .feature-card img {
        height: 210px;
    }

    .feature-card:nth-child(even) img {
        transform: none;
    }

    .contact-method-wide {
        grid-column: auto;
    }
}

