        :root {
            --electric-blue: #afff00;
            --electric-blue-dark: #A9CC00;
            --electric-blue-light: #afff00;
            --electric-cyan: #F4FFC2;
            --dark: #0A0E1A;
            --dark-card: #111827;
            --dark-surface: #1A2035;
            --white: #FFFFFF;
            --gray-100: #F1F5F9;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --accent-yellow: #FACC15;
            --accent-green: #22C55E;
            --accent-red: #EF4444;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--dark);
            color: var(--white);
            overflow-x: hidden;
        }

        /* ── HERO SECTION ── */
        .hero {
            --hero-ball-top: 36%;
            --hero-ball-left: 50%;
            --hero-theme-primary: var(--electric-blue);
            --hero-theme-primary-rgb: 175, 255, 0;
            --hero-theme-secondary: var(--electric-cyan);
            --hero-theme-secondary-rgb: 244, 255, 194;
            --hero-theme-glow: var(--electric-blue);
            --hero-theme-glow-rgb: 175, 255, 0;
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow: hidden;
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 72% 24%, rgba(var(--hero-theme-secondary-rgb), 0.2) 0%, transparent 42%),
                linear-gradient(135deg, rgba(var(--hero-theme-primary-rgb), 0.2) 0%, transparent 52%),
                linear-gradient(to bottom, transparent 30%, var(--dark) 100%),
                var(--hero-bg-image-desktop, url('/static/images/background-image-header.png'))
                var(--hero-bg-position, center) / var(--hero-bg-size, cover) no-repeat;
            filter: brightness(0.6);
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(10, 14, 26, 0.1) 0%,
                rgba(10, 14, 26, 0.4) 50%,
                rgba(10, 14, 26, 0.95) 85%,
                var(--dark) 100%
            );
        }

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

        .hero__entry-fx {
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
        }

        .hero__entry-flash {
            position: absolute;
            left: 50%;
            top: 54%;
            width: min(52vw, 520px);
            aspect-ratio: 1;
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0.35);
            background: radial-gradient(circle, rgba(var(--hero-theme-secondary-rgb), 0.72) 0%, rgba(var(--hero-theme-primary-rgb), 0.34) 34%, rgba(var(--hero-theme-glow-rgb), 0.1) 54%, rgba(var(--hero-theme-glow-rgb), 0) 76%);
            opacity: 0;
            animation: hero-entry-flash 980ms ease-out 90ms forwards;
        }

        .hero__entry-spark {
            --angle: 0deg;
            --dist: 130px;
            --delay: 0ms;
            position: absolute;
            left: 50%;
            top: 54%;
            width: 3.6px;
            height: 24px;
            border-radius: 999px;
            transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) scale(0.2);
            transform-origin: 50% 100%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--hero-theme-primary-rgb), 0.9) 48%, rgba(var(--hero-theme-primary-rgb), 0) 100%);
            box-shadow: 0 0 16px rgba(var(--hero-theme-glow-rgb), 0.76), 0 0 28px rgba(var(--hero-theme-secondary-rgb), 0.32);
            opacity: 0;
            animation: hero-entry-spark 840ms cubic-bezier(0.2, 0.7, 0, 1) var(--delay) forwards;
        }

        .hero__entry-spark--1 { --angle: -68deg; --dist: 145px; --delay: 130ms; }
        .hero__entry-spark--2 { --angle: -42deg; --dist: 120px; --delay: 170ms; }
        .hero__entry-spark--3 { --angle: -16deg; --dist: 112px; --delay: 150ms; }
        .hero__entry-spark--4 { --angle: 10deg; --dist: 128px; --delay: 190ms; }
        .hero__entry-spark--5 { --angle: 34deg; --dist: 138px; --delay: 220ms; }
        .hero__entry-spark--6 { --angle: 58deg; --dist: 126px; --delay: 185ms; }
        .hero__entry-spark--7 { --angle: 84deg; --dist: 116px; --delay: 145ms; }
        .hero__entry-spark--8 { --angle: 112deg; --dist: 96px; --delay: 165ms; }
        .hero__entry-spark--9 { --angle: -96deg; --dist: 126px; --delay: 150ms; }
        .hero__entry-spark--10 { --angle: -120deg; --dist: 108px; --delay: 175ms; }
        .hero__entry-spark--11 { --angle: 132deg; --dist: 104px; --delay: 205ms; }
        .hero__entry-spark--12 { --angle: 152deg; --dist: 96px; --delay: 185ms; }
        .hero__entry-spark--13 { --angle: -146deg; --dist: 92px; --delay: 210ms; }
        .hero__entry-spark--14 { --angle: 176deg; --dist: 88px; --delay: 190ms; }

        .hero__player-source {
            display: contents;
        }

        .hero__ball-layer {
            position: absolute;
            inset: 0;
            z-index: 6;
            pointer-events: none;
            overflow: hidden;
        }

        .hero__ball {
            position: absolute;
            left: var(--hero-ball-left);
            top: var(--hero-ball-top);
            width: clamp(14px, 1.2vw, 24px);
            aspect-ratio: 1;
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0.06);
            transform-origin: center center;
            opacity: 0;
            background-image: image-set(
                url('/static/images/padel-ball.avif') type('image/avif') 1x,
                url('/static/images/padel-ball.webp') type('image/webp') 1x,
                url('/static/images/padel-ball.png') type('image/png') 1x
            );
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            box-shadow: 0 0 12px rgba(255, 238, 102, 0.68), 0 0 28px rgba(255, 224, 79, 0.38);
            animation: hero-ball-approach 2600ms cubic-bezier(0.14, 0.62, 0.2, 0.98) 480ms forwards;
        }

        .hero__player {
            position: absolute;
            left: 50%;
            bottom: 14rem;
            width: 80%;
            max-width: none;
            height: auto;
            transform: translateX(-50%);
            z-index: 1;
            pointer-events: none;
            user-select: none;
            filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));
            -webkit-mask-image: linear-gradient(
                to top,
                transparent 0%,
                rgba(0, 0, 0, 0.1) 26%,
                rgba(0, 0, 0, 0.5) 42%,
                #000 60%,
                #000 100%
            );
            mask-image: linear-gradient(
                to top,
                transparent 0%,
                rgba(0, 0, 0, 0.1) 26%,
                rgba(0, 0, 0, 0.5) 42%,
                #000 60%,
                #000 100%
            );
            opacity: 0;
        }

        .hero__player--girl {
            left: 36%;
            z-index: 2;
            width: 73.872%;
            bottom: 15.125rem;
            -webkit-mask-image: linear-gradient(
                to top,
                transparent 0%,
                rgba(0, 0, 0, 0.08) 32%,
                rgba(0, 0, 0, 0.48) 48%,
                #000 66%,
                #000 100%
            );
            mask-image: linear-gradient(
                to top,
                transparent 0%,
                rgba(0, 0, 0, 0.08) 32%,
                rgba(0, 0, 0, 0.48) 48%,
                #000 66%,
                #000 100%
            );
            --player-opacity: 0.82;
            animation: hero-player-reveal 820ms ease-out 260ms forwards, hero-float-girl 5.2s ease-in-out 980ms infinite;
        }

        .hero__player--man {
            left: 64%;
            z-index: 1;
            width: 61.6%;
            bottom: 19.48rem;
            --player-opacity: 0.95;
            animation: hero-player-reveal 760ms ease-out 140ms forwards, hero-float-man 5.2s ease-in-out 880ms infinite;
        }

        .hero__player--single {
            left: 50%;
            z-index: 2;
            width: min(76%, 660px);
            bottom: 5rem;
            --player-opacity: 0.94;
            animation: hero-player-reveal 800ms ease-out 180ms forwards, hero-float-man 5.2s ease-in-out 920ms infinite;
        }

        .hero__player--single.hero__player--female {
            width: min(82%, 720px);
            bottom: 3.5rem;
            animation-name: hero-player-reveal, hero-float-girl;
        }

        .hero__content {
            position: relative;
            z-index: 3;
            padding: 0 clamp(1.5rem, 5vw, 6rem);
            padding-bottom: 9.75rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        @media (min-width: 1200px) {
            .hero__player--girl {
                left: 40%;
                width: clamp(460px, 33vw, 620px);
                bottom: 3.645rem;
            }

            .hero__player--man {
                left: 61%;
                width: clamp(360px, 27vw, 520px);
                bottom: 10.54152rem;
            }

            .hero__player--single {
                left: 62%;
                width: clamp(420px, 34vw, 640px);
                bottom: 4rem;
            }

            .hero__player--single.hero__player--female {
                width: clamp(480px, 38vw, 700px);
                bottom: 2.5rem;
            }
        }

        @media (max-width: 1024px) {
            .hero__player {
                bottom: 15rem;
                opacity: 0.8;
            }

            .hero__content {
                padding-bottom: 11.5rem;
            }

            .hero__actions > .btn-primary {
                display: none;
            }

            .hero--results .hero__actions > .btn-primary,
            .hero--results-detail .hero__actions > .btn-primary {
                display: inline-flex;
            }

            .hero__player--girl {
                left: 35%;
                bottom: 16.225rem;
            }

            .hero__player--man {
                left: 66%;
                bottom: 20.57rem;
            }

            .hero__player--single {
                left: 58%;
                bottom: 14rem;
            }
        }

        @media (max-width: 768px) {
            .hero__bg {
                background:
                    radial-gradient(circle at 68% 20%, rgba(var(--hero-theme-secondary-rgb), 0.2) 0%, transparent 40%),
                    linear-gradient(135deg, rgba(var(--hero-theme-primary-rgb), 0.2) 0%, transparent 52%),
                    linear-gradient(to bottom, transparent 30%, var(--dark) 100%),
                    var(--hero-bg-image-mobile, var(--hero-bg-image-desktop, url('/static/images/background-image-header.png')))
                    var(--hero-bg-position, center) / var(--hero-bg-size, cover) no-repeat;
            }

            .hero {
                --hero-ball-top: 25.56%;
                --hero-ball-left: 57%;
            }

            .hero__player {
                bottom: 19.5rem;
                opacity: 0.62;
            }

            .hero__content {
                padding-bottom: 13rem;
            }

            .hero__title {
                font-size: clamp(2.56rem, 6.4vw, 5.76rem) !important;
            }

            .hero__meta {
                display: grid !important;
                grid-template-columns: 1fr !important;
                row-gap: 0.55rem !important;
                column-gap: 0 !important;
                margin-bottom: 1rem !important;
            }

            .hero__meta-item {
                font-size: 0.95rem !important;
                line-height: 1.1 !important;
            }

            .hero__actions {
                display: grid;
                grid-template-columns: minmax(0, 1fr) 76px 76px;
                align-items: stretch;
                gap: 0.5rem;
            }

            .hero--results .hero__actions,
            .hero--results-detail .hero__actions {
                grid-template-columns: minmax(0, 1fr);
            }

            .hero--results .hero__actions > .btn-primary,
            .hero--results-detail .hero__actions > .btn-primary {
                grid-column: 1 / -1;
                justify-content: center;
            }

            .hero--results .hero__actions > .btn,
            .hero--results-detail .hero__actions > .btn {
                width: 100%;
                min-height: 58px;
                border-radius: 18px;
            }

            .hero__actions > .btn-ghost:not(.btn--icon) {
                min-width: 0;
                justify-content: center;
                padding-left: 0.9rem;
                padding-right: 0.9rem;
                font-size: 0.95rem;
            }

            .hero__action-menu {
                min-width: 0;
                width: 76px;
            }

            .hero__action-menu .btn--icon,
            .hero__actions > .btn--icon {
                width: 76px;
                min-width: 76px;
                padding-left: 0;
                padding-right: 0;
                justify-content: center;
                border-radius: 20px;
            }

            .hero--results .hero__actions > .btn--icon,
            .hero--results-detail .hero__actions > .btn--icon {
                width: 64px;
                min-width: 64px;
            }

            .hero__action-menu .btn--icon {
                width: 100%;
                min-width: 0;
            }

            .hero__player--girl {
                left: 34%;
                bottom: 21.175rem;
            }

            .hero__player--man {
                left: 66%;
                bottom: 25.53rem;
            }

            .hero__player--single {
                left: 58%;
                width: 92%;
                bottom: 19rem;
            }

            .hero__player--single.hero__player--female {
                width: 100%;
                bottom: 18rem;
            }
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(175, 255, 0, 0.15);
            border: 1px solid rgba(175, 255, 0, 0.28);
            border-radius: 100px;
            padding: 0.5rem 1.2rem;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            line-height: 1;
            letter-spacing: 0.1em;
            color: var(--electric-cyan);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease both;
        }

        .hero__badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-green);
            animation: pulse-dot 2s infinite;
        }

        .hero__title {
            font-family: var(--font-body);
            font-size: clamp(4rem, 10vw, 9rem);
            font-weight: 500;
            line-height: 0.9;
            letter-spacing: -0.01em;
            color: var(--white);
            margin-bottom: clamp(1rem, 1.8vw, 1.6rem);
            animation: fadeInUp 0.8s 0.1s ease both;
        }

        @media (min-width: 769px) {
            .hero__title--tournament {
                font-size: clamp(3.24rem, 8.1vw, 7.29rem);
            }

            .hero__subtitle--tournament {
                font-size: clamp(1.2rem, 2.4vw, 2rem);
            }
        }

        .hero__title span {
            display: block;
            background: linear-gradient(90deg, var(--electric-blue), var(--electric-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero__claim {
            max-width: min(100%, 64rem);
            margin-bottom: 0.75rem;
            color: var(--white);
            font-size: clamp(1.45rem, 2.4vw, 2.25rem);
            font-weight: 500;
            line-height: 1.1;
        }

        .hero__subtitle {
            font-family: var(--font-body);
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 600;
            line-height: 1.12;
            color: var(--gray-400);
            letter-spacing: 0.15em;
            margin-bottom: 2rem;
            max-width: min(100%, 64rem);
            animation: fadeInUp 0.8s 0.2s ease both;
        }

        .hero--results .hero__subtitle,
        .hero--results-detail .hero__subtitle {
            max-width: min(100%, 52rem);
            font-size: clamp(1.05rem, 1.45vw, 1.35rem);
            font-weight: 500;
            line-height: 1.55;
            letter-spacing: 0;
            color: var(--gray-300);
            margin-bottom: 2rem;
        }

        .hero__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s 0.3s ease both;
        }

        .hero__meta-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            line-height: 1.2;
            color: var(--gray-300);
            font-weight: 400;
        }

        .hero__meta-item svg {
            width: 20px;
            height: 20px;
            color: var(--electric-blue-light);
            flex-shrink: 0;
        }

        .hero__meta-location {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .hero__meta-location-name {
            font-weight: 500;
            color: var(--white);
            line-height: 1.2;
        }

        .hero__meta-location-address {
            color: var(--gray-300);
            line-height: 1.25;
        }

        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            animation: fadeInUp 0.8s 0.4s ease both;
        }

        .hero__action-menu {
            position: relative;
        }

        .hero__action-popover {
            position: absolute;
            bottom: calc(100% + 0.65rem);
            right: 0;
            min-width: 190px;
            display: grid;
            gap: 0.45rem;
            padding: 0.85rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(17, 24, 39, 0.96);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(18px);
            z-index: 20;
        }

        .hero__action-popover[hidden] {
            display: none !important;
        }

        .hero__action-popover-title {
            font-size: 0.78rem;
            letter-spacing: 0.08em;
            color: var(--gray-400);
            padding: 0 0.2rem;
        }

        .hero__action-popover-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            min-height: 42px;
            padding: 0.7rem 0.9rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.25s ease;
        }

        .hero__action-popover-link:hover {
            border-color: rgba(244, 255, 194, 0.65);
            background: rgba(175, 255, 0, 0.12);
            transform: translateY(-1px);
        }

        .hero__actions > .btn {
            min-height: 58px;
            padding-inline: 2.2rem;
            border-radius: var(--radius-button);
            font-size: 1.05rem;
        }

        .btn--icon {
            justify-content: center;
            width: 56px;
            padding: 1rem 0;
        }

        .js-open-navigation {
            border-color: rgba(255, 255, 255, 0.2);
            background: transparent;
        }

        .js-open-navigation:hover {
            border-color: var(--electric-blue-light);
            background: rgba(175, 255, 0, 0.08);
        }

        .btn svg { width: 20px; height: 20px; }

        /* ── COUNTDOWN STRIP ── */
        .countdown {
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
            color: var(--dark);
            padding: 1.5rem 0;
            overflow: hidden;
        }

        .countdown::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255,255,255,0.03) 120px, rgba(255,255,255,0.03) 121px);
        }

        .countdown__inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 5vw, 6rem);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            position: relative;
        }

        .countdown__label {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            color: rgba(10, 14, 26, 0.72);
        }

        .countdown__blocks {
            display: flex;
            gap: 1rem;
        }

        .countdown__block {
            text-align: center;
            min-width: 64px;
            padding: 0.4rem 0.6rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.08);
        }

        .countdown__number {
            font-family: var(--font-display);
            font-size: 2.2rem;
            line-height: 1;
            color: var(--dark);
        }

        .countdown__unit {
            font-size: 0.7rem;
            line-height: 1;
            letter-spacing: 0.1em;
            text-transform: capitalize;
            color: rgba(10, 14, 26, 0.68);
            margin-top: 0.2rem;
        }

        /* ── SECTION WRAPPER ── */
        .section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5rem clamp(1.5rem, 5vw, 6rem);
        }

        .section__label {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            color: var(--electric-blue-light);
            margin-bottom: 0.75rem;
        }

        .section__title {
            font-family: var(--font-body);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .section__desc {
            font-size: 1.1rem;
            color: var(--gray-400);
            max-width: 600px;
            line-height: 1.45;
            margin-bottom: 3rem;
        }

        /* ── INFO GRID ── */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .info-grid--compact {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 0.9rem;
        }

        .info-card {
            padding: 2rem;
            transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--color-primary);
            opacity: 0;
            transition: opacity 0.35s;
        }

        .info-card:hover {
            border-color: rgba(175, 255, 0, 0.2);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

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

        .info-card__icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            margin-bottom: 1.2rem;
        }

        .info-card__icon svg { width: 24px; height: 24px; }

        .info-card__label {
            font-size: 0.8rem;
            color: var(--color-label);
            letter-spacing: 0.08em;
            margin-bottom: 0.4rem;
        }

        .info-card__value {
            font-family: var(--font-body);
            font-size: var(--font-card-title-size);
            font-weight: var(--font-card-title-weight);
            line-height: 1.08;
        }

        .info-card__detail {
            font-size: var(--font-card-copy-size);
            font-weight: var(--font-card-copy-weight);
            color: var(--gray-400);
            margin-top: 0.5rem;
            line-height: 1.45;
        }

        .info-card__items {
            display: grid;
            gap: 0.75rem;
            margin: 1.25rem 0 0;
        }

        .info-card__item {
            display: grid;
            gap: 0.25rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .info-card__item:first-child {
            padding-top: 0;
            border-top: 0;
        }

        .info-card__item dt {
            color: var(--color-label);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .info-card__item dd {
            color: var(--gray-200);
            font-size: var(--font-card-copy-size);
            font-weight: var(--font-card-copy-weight);
            line-height: 1.4;
            margin: 0;
            overflow-wrap: anywhere;
        }

        .info-card__links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin-top: 1rem;
        }

        .info-card__links a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--electric-blue-light);
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
        }

        .map-provider-link__icon {
            width: 1rem;
            height: 1rem;
            flex: 0 0 auto;
        }

        .info-card__links a:hover {
            text-decoration: underline;
        }

        .info-card--compact {
            border-radius: 18px;
            padding: 1.1rem 1.25rem;
            min-height: auto;
        }

        .info-card--compact .info-card__label {
            font-size: 0.72rem;
            margin-bottom: 0.25rem;
        }

        .info-card--compact .info-card__value {
            font-size: clamp(1.2rem, 2.4vw, 1.55rem);
            line-height: 1.1;
        }

        .info-card--compact:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
        }

        .player-tabs {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .player-tabs__nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .player-tabs__trigger {
            appearance: none;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: var(--gray-300);
            border-radius: 999px;
            padding: 0.72rem 1rem;
            font-family: var(--font-body);
            font-size: 0.92rem;
            font-weight: 600;
            line-height: 1;
            cursor: pointer;
            transition: all 0.22s ease;
        }

        .player-tabs__trigger:hover {
            border-color: rgba(175, 255, 0, 0.24);
            color: var(--white);
        }

        .player-tabs__trigger.is-active {
            border-color: rgba(175, 255, 0, 0.38);
            background: linear-gradient(135deg, rgba(175, 255, 0, 0.18), rgba(86, 241, 255, 0.1));
            color: var(--white);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
        }

        .player-tabs__panel[hidden] {
            display: none;
        }

        .match-card__stack {
            display: grid;
            gap: 0.45rem;
            justify-items: center;
            text-align: center;
        }

        .match-card__versus {
            color: var(--color-label);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            align-self: center;
        }

        .info-card--bye {
            border-style: dashed;
        }

        .info-card--match {
            display: grid;
            align-items: center;
        }

        .player-pair {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            min-width: 0;
        }

        .player-pair--match {
            justify-content: center;
            width: 100%;
            gap: 0.35rem;
        }

        .player-chip {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            min-width: 0;
            flex: 1 1 0;
        }

        .player-chip--match {
            justify-content: center;
            flex: 1 1 0;
            min-width: 0;
            max-width: none;
        }

        .player-chip__avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.05);
        }

        .player-chip__avatar--placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-mono);
            font-size: 0.78rem;
            color: var(--white);
            background: linear-gradient(135deg, rgba(175, 255, 0, 0.26), rgba(86, 241, 255, 0.18));
        }

        .player-chip__name {
            display: block;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.15;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .player-pair__separator {
            flex-shrink: 0;
            color: var(--color-label);
            font-size: 0.82rem;
            line-height: 1;
        }

        /* ── PUBLIC RESULTS ── */
        .hero--results,
        .hero--results-detail {
            min-height: 92vh;
        }

        .hero--results .hero__content,
        .hero--results-detail .hero__content {
            padding-bottom: 8rem;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .result-summary-card {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .result-detail-header {
            padding-top: clamp(2.5rem, 6vw, 5rem);
            padding-bottom: 1.5rem;
        }

        .result-detail-header__content {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1.5rem;
        }

        .result-detail-header__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem 1rem;
            color: var(--gray-400);
            font-size: 1rem;
            line-height: 1.35;
        }

        .result-detail-header__meta span {
            display: inline-flex;
            align-items: center;
        }

        .result-detail-header__meta span + span::before {
            content: "·";
            margin-right: 1rem;
            color: var(--electric-blue-light);
        }

        .result-detail-header__back {
            flex-shrink: 0;
        }

        .result-detail-podium {
            padding-top: 2rem;
        }

        .result-summary-card__header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
        }

        .result-summary-card__header .info-card__value {
            margin-top: 0.25rem;
        }

        .result-summary-card__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem 1rem;
            color: var(--gray-400);
            font-size: 0.95rem;
        }

        .result-podium {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
            padding: 1.5rem;
            border-radius: 22px;
            background:
                radial-gradient(circle at 50% 0%, rgba(175, 255, 0, 0.1), transparent 55%),
                linear-gradient(145deg, rgba(26, 32, 53, 0.96), rgba(13, 18, 32, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .result-podium--detail {
            padding: clamp(1.8rem, 5vw, 3.5rem);
        }

        .result-podium__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 76px;
            height: 76px;
            border-radius: 999px;
            background: linear-gradient(180deg, var(--electric-blue-light), var(--electric-blue));
            color: var(--dark);
        }

        .result-podium__icon svg {
            width: 38px;
            height: 38px;
        }

        .result-podium h4 {
            font-size: 1.15rem;
            line-height: 1;
        }

        .result-podium__players {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 0.75rem;
            width: 100%;
        }

        .result-podium__players--detail {
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            max-width: 820px;
        }

        .result-winner-pair {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
            align-items: start;
            gap: 0.75rem;
            width: 100%;
        }

        .result-winner-pair__player {
            display: grid;
            justify-items: center;
            gap: 0.6rem;
            min-width: 0;
        }

        .result-winner-pair__avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--electric-blue);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
        }

        .result-winner-pair__avatar--placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-body);
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--dark);
            background: var(--electric-blue);
        }

        .result-winner-pair__name {
            display: block;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            overflow: hidden;
            color: var(--white);
            font-size: 0.96rem;
            line-height: 1.2;
            text-align: center;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .result-winner-pair__separator {
            align-self: center;
            color: var(--gray-400);
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 58px;
        }

        .landing-champions {
            gap: 1.35rem;
        }

        .landing-champions__pair {
            align-items: center;
            max-width: 720px;
        }

        .landing-champions__player {
            padding: 1.15rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            background: rgba(17, 24, 39, 0.72);
        }

        .landing-champions__avatar {
            width: 72px;
            height: 72px;
        }

        .landing-champions__name {
            font-size: 1.08rem;
        }

        .landing-champions__meta {
            color: var(--gray-400);
            font-size: 0.86rem;
            font-weight: 700;
        }

        .landing-champions__separator {
            color: var(--electric-blue);
            font-size: 1.25rem;
            line-height: 72px;
        }

        .result-player-chip {
            min-width: 0;
            padding: 0.9rem;
            border-radius: 16px;
            background: rgba(17, 24, 39, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .result-player-chip--detail {
            padding: 1.3rem;
        }

        .result-player-chip strong,
        .result-player-chip span {
            display: block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .result-player-chip strong {
            font-size: 1.02rem;
            line-height: 1.15;
        }

        .result-player-chip--detail strong {
            font-size: 1.28rem;
        }

        .result-player-chip span {
            margin-top: 0.35rem;
            color: var(--gray-400);
            font-size: 0.88rem;
        }

        .result-summary-card__finalists {
            display: grid;
            gap: 0.35rem;
            color: var(--gray-400);
        }

        .result-summary-card__finalists span {
            color: var(--electric-blue-light);
            font-family: var(--font-mono);
            font-size: 0.72rem;
            letter-spacing: 0.16em;
        }

        .result-summary-card__finalists strong {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .result-summary-card__link {
            align-self: stretch;
            justify-content: center;
            width: 100%;
            margin-top: auto;
        }

        .results-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .results-pagination span {
            color: var(--gray-400);
        }

        .results-pagination__disabled {
            opacity: 0.45;
            pointer-events: none;
        }

        .result-standing-card .info-card__value {
            overflow-wrap: anywhere;
        }

        /* ── FORMAT & RULES ── */
        .format-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .format-grid { grid-template-columns: 1fr; }

            .hero--results,
            .hero--results-detail {
                min-height: 84vh;
            }

            .hero--results .hero__subtitle,
            .hero--results-detail .hero__subtitle {
                font-size: clamp(1rem, 3.8vw, 1.2rem);
                line-height: 1.55;
                letter-spacing: 0;
            }

            .hero__claim {
                font-size: clamp(1.15rem, 5.4vw, 1.55rem);
                line-height: 1.16;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }

            .result-summary-card__header {
                flex-direction: column;
            }

            .result-detail-header__content {
                align-items: flex-start;
                flex-direction: column;
            }

            .result-detail-header__meta {
                flex-direction: column;
                gap: 0.35rem;
            }

            .result-detail-header__meta span + span::before {
                content: none;
            }

            .landing-champions {
                padding: 1.4rem 1rem;
            }

            .landing-champions__pair {
                gap: 0.55rem;
            }

            .landing-champions__player {
                padding: 0.9rem 0.65rem;
            }

            .landing-champions__avatar {
                width: 58px;
                height: 58px;
            }

            .landing-champions__name {
                font-size: 0.92rem;
            }

            .landing-champions__separator {
                font-size: 1rem;
                line-height: 58px;
            }

            .info-grid--compact {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .info-card--compact {
                padding: 1rem 1.1rem;
                border-radius: 16px;
            }

            .player-tabs__nav {
                gap: 0.55rem;
            }

            .player-tabs__trigger {
                width: 100%;
                justify-content: center;
                text-align: center;
                padding: 0.78rem 0.95rem;
                font-size: 0.88rem;
            }

            .player-chip__avatar {
                width: 28px;
                height: 28px;
            }

            .player-chip__name {
                font-size: 0.88rem;
            }

            .player-pair {
                gap: 0.4rem;
            }
        }

        .format-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .format-card--highlight {
            background: linear-gradient(135deg, rgba(175, 255, 0, 0.12), rgba(244, 255, 194, 0.08));
            border-color: rgba(175, 255, 0, 0.2);
        }

        .format-card__title {
            font-family: var(--font-body);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .format-card__list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .format-card__list li {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            color: var(--gray-300);
            font-size: 0.95rem;
            line-height: 1.35;
        }

        .format-card__list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--electric-blue-light);
            flex-shrink: 0;
            margin-top: 0.5rem;
        }

        /* ── PRIZES ── */
        .prizes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .prizes { grid-template-columns: 1fr; }
        }

        .prize-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            transition: all 0.35s ease;
        }

        .prize-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .prize-card--gold {
            border-color: rgba(250, 204, 21, 0.3);
            background: linear-gradient(180deg, rgba(250, 204, 21, 0.08), var(--dark-card));
        }

        .prize-card__position {
            font-family: var(--font-body);
            font-size: 4rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .prize-card--gold .prize-card__position {
            background: linear-gradient(180deg, var(--electric-blue), var(--electric-blue-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .prize-card__label {
            font-size: 0.85rem;
            color: var(--color-label);
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .prize-card__amount {
            font-family: var(--font-body);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
        }

        .prize-card__desc {
            font-size: 0.9rem;
            color: var(--gray-400);
            margin-top: 0.5rem;
            line-height: 1.3;
        }

        /* ── CTA SECTION ── */
        .cta-section {
            position: relative;
            padding: 6rem clamp(1.5rem, 5vw, 6rem);
            text-align: center;
            overflow: hidden;
        }

        .cta-section__bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(175, 255, 0, 0.15) 0%, transparent 70%);
        }

        .cta-section__content {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section__title {
            font-family: var(--font-body);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 500;
            line-height: 0.95;
            margin-bottom: 1rem;
        }

        .cta-section__title span {
            background: linear-gradient(90deg, var(--electric-blue), var(--electric-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-section__desc {
            font-size: 1.15rem;
            color: var(--gray-400);
            margin-bottom: 2.5rem;
            line-height: 1.45;
        }

        .cta-section .btn-primary {
            font-size: 1.15rem;
            padding: 1.2rem 3rem;
            border-radius: var(--radius-button);
        }

        /* ── FLOATING REGISTER (MOBILE) ── */
        .floating-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1rem 1.5rem;
            padding-bottom: calc(1rem + env(safe-area-inset-bottom));
            background: linear-gradient(to top, var(--dark) 60%, transparent);
        }

        .floating-cta .btn {
            width: 100%;
            justify-content: center;
            font-size: 1.1rem;
            padding: 1.1rem;
        }

        @media (max-width: 1024px) {
            .floating-cta { display: block; }

            .hero__action-popover {
                right: 0;
                left: auto;
            }

        }

        /* ── ORGANIZER ── */
        .organizer {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            max-width: 500px;
        }

        .organizer__avatar {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--electric-blue), var(--electric-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .organizer__name {
            font-weight: 600;
            font-size: 1rem;
        }

        .organizer__role {
            font-size: 0.85rem;
            color: var(--color-label);
        }

        /* ── ANIMATIONS ── */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }

        @keyframes hero-entry-flash {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0.35); }
            30% { opacity: 0.62; }
            100% { opacity: 0; transform: translate(-50%, -50%) scale(2.05); }
        }

        @keyframes hero-entry-spark {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) rotate(var(--angle)) translateY(0) scale(0.2);
            }
            12% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--dist) * -1)) scale(1);
            }
        }

        @keyframes hero-ball-approach {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.06);
            }
            12% {
                opacity: 0.95;
            }
            88% {
                opacity: 0.95;
                transform: translate(-50%, -50%) scale(3.4);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(30);
            }
        }

        @keyframes hero-float-man {
            0%, 100% { transform: translate(-50%, 0); }
            40% { transform: translate(-50%, -13px); }
        }

        @keyframes hero-float-girl {
            0%, 20%, 100% { transform: translate(-50%, 0); }
            60% { transform: translate(-50%, -11px); }
        }

        @keyframes hero-player-reveal {
            0% {
                opacity: 0;
                filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
            }
            100% {
                opacity: var(--player-opacity);
                filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.45));
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── DIVIDER ── */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent);
            max-width: 1400px;
            margin: 0 auto;
        }

        /* ── LOCATION MAP PLACEHOLDER ── */
        .location-embed {
            width: 100%;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 2rem;
            background: var(--dark-surface);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-label);
            font-size: 0.9rem;
        }

        /* ── SPOTS BAR ── */
        .spots-bar {
            margin-top: 1rem;
        }

        .spots-bar__track {
            height: 6px;
            border-radius: 3px;
            background: rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        .spots-bar__fill {
            height: 100%;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--electric-blue), var(--electric-cyan));
            width: 68%;
            transition: width 1.5s ease;
        }

        .spots-bar__text {
            display: flex;
            justify-content: space-between;
            margin-top: 0.4rem;
            font-size: 0.8rem;
            color: var(--color-label);
        }

        .spots-bar__text strong {
            color: var(--electric-blue-dark);
            font-weight: 600;
        }

        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
        }

        .sponsor-card {
            min-height: 88px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .sponsor-card:hover {
            transform: translateY(-2px);
            border-color: rgba(244, 255, 194, 0.45);
        }

        .sponsor-card img {
            max-width: 100%;
            max-height: 56px;
            object-fit: contain;
        }

        @media (prefers-reduced-motion: reduce) {
            .hero__player {
                animation: none;
                opacity: var(--player-opacity, 0.9);
            }

            .hero__entry-fx {
                display: none;
            }

            .hero__ball-layer {
                display: none;
            }
        }
