
        :root {
            --deep-blue: #0A2A4A;
            --charcoal: #333333;
            --white: #FFFFFF;
            --gold: #C9A646;
            --bg-cream: #F4E9E9;
        }

        html, body {
            height: 100%;
        }

        body {
            font-family: 'Poppins', sans-serif;
            
            color: var(--charcoal);
            overflow-x: hidden;
        }

        .font-display {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Background gradient */
        .scene-bg {
            /*background: linear-gradient(135deg, #F4E9E9 0%, #F9F3F0 50%, #F4E9E9 100%);*/
        }

        .grain::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: .15;
            mix-blend-mode: overlay;
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 4px 4px;
        }

        /* Floating organic shapes */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: .08;
            animation: float 14s ease-in-out infinite;
        }

        @keyframes float {
            0%,100% {
                transform: translate(0,0) scale(1);
            }

            50% {
                transform: translate(20px,-30px) scale(1.08);
            }
        }

        /* Counter card */
        .counter-card {
            position: relative;
            background: rgba(255,255,255,0.7);
            border: 1px solid rgba(201,166,70,0.25);
            border-radius: 24px;
            padding: 28px 24px 26px;
            transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
            opacity: 0;
            transform: translateY(30px);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

            .counter-card.in-view {
                opacity: 1;
                transform: translateY(0);
            }

            .counter-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 20px 40px -20px rgba(201,166,70,0.3);
            }

            .counter-card::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 4px;
                background: linear-gradient(90deg, var(--gold), rgba(201,166,70,0.4));
                transform: scaleX(0);
                transform-origin: left;
                transition: transform .7s ease;
            }

            .counter-card.in-view::after {
                transform: scaleX(1);
            }

        .number {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: clamp(48px, 5vw, 68px);
            line-height: 1;
            letter-spacing: -0.03em;
            color: var(--charcoal);
        }

        /* Icon containers */
        .icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Trophy + sparkles */
        .trophy-wrap {
            background: linear-gradient(135deg, rgba(201,166,70,0.2), rgba(201,166,70,0.1));
        }

        .sparkle {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 8px var(--gold);
            opacity: 0;
        }

        .counter-card.in-view .sparkle {
            animation: sparkle 2.2s ease-in-out infinite;
        }

        .sparkle.s1 {
            top: -2px;
            left: 52px;
            animation-delay: .2s !important;
        }

        .sparkle.s2 {
            top: 20px;
            left: 66px;
            animation-delay: .8s !important;
        }

        .sparkle.s3 {
            top: 48px;
            left: -4px;
            animation-delay: 1.4s !important;
        }

        @keyframes sparkle {
            0%,100% {
                opacity: 0;
                transform: scale(.4);
            }

            30%,60% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        .trophy-icon {
            animation: trophyBob 3.5s ease-in-out infinite;
            transform-origin: 50% 80%;
            stroke: var(--gold);
        }

        @keyframes trophyBob {
            0%,100% {
                transform: rotate(-3deg) translateY(0);
            }

            50% {
                transform: rotate(3deg) translateY(-3px);
            }
        }

        /* Leaf */
        .leaf-wrap {
            background: linear-gradient(135deg, rgba(10,42,74,0.3), rgba(10,42,74,0.15));
        }

        .leaf-icon {
            animation: leafSway 3.8s ease-in-out infinite;
            transform-origin: 50% 90%;
            filter: drop-shadow(0 0 6px rgba(201,166,70,0.3));
        }

        @keyframes leafSway {
            0%,100% {
                transform: rotate(-8deg);
            }

            50% {
                transform: rotate(8deg);
            }
        }

        .leaf-glow {
            position: absolute;
            inset: 0;
            border-radius: 16px;
            box-shadow: inset 0 0 20px rgba(201,166,70,0.2);
            animation: leafPulse 2.8s ease-in-out infinite;
        }

        @keyframes leafPulse {
            0%,100% {
                opacity: .4;
            }

            50% {
                opacity: 1;
            }
        }

        /* Sectors */
        .sector-wrap {
            background: linear-gradient(135deg, rgba(201,166,70,0.15), rgba(201,166,70,0.08));
        }

        .sector-icon {
            animation: sectorFade 6s ease-in-out infinite;
            position: absolute;
            opacity: 0;
        }

            .sector-icon.s1 {
                animation-delay: 0s;
            }

            .sector-icon.s2 {
                animation-delay: 2s;
            }

            .sector-icon.s3 {
                animation-delay: 4s;
            }

        @keyframes sectorFade {
            0%, 33%, 100% {
                opacity: 0;
                transform: scale(.8);
            }

            5%, 28% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Judges */
        .judges-wrap {
            background: linear-gradient(135deg, rgba(10,42,74,0.3), rgba(10,42,74,0.15));
        }

        .silhouette {
            position: absolute;
            border-radius: 50% 50% 20% 20%;
            animation: bob 2.6s ease-in-out infinite;
        }

            .silhouette.p1 {
                width: 14px;
                height: 20px;
                left: 12px;
                bottom: 14px;
                background: #0A2A4A;
                animation-delay: 0s;
            }

            .silhouette.p2 {
                width: 16px;
                height: 24px;
                left: 26px;
                bottom: 14px;
                background: #C9A646;
                animation-delay: .2s;
            }

            .silhouette.p3 {
                width: 14px;
                height: 22px;
                left: 42px;
                bottom: 14px;
                background: #0A2A4A;
                animation-delay: .4s;
            }

        .head {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            animation: bob 2.6s ease-in-out infinite;
        }

            .head.h1 {
                background: #0A2A4A;
                left: 15px;
                bottom: 34px;
                animation-delay: 0s;
            }

            .head.h2 {
                background: #C9A646;
                left: 30px;
                bottom: 38px;
                animation-delay: .2s;
            }

            .head.h3 {
                background: #0A2A4A;
                left: 45px;
                bottom: 36px;
                animation-delay: .4s;
            }

        @keyframes bob {
            0%,100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }
        }

        /* Globe */
        .globe-wrap {
            background: linear-gradient(135deg, rgba(10,42,74,0.3), rgba(10,42,74,0.15));
            overflow: hidden;
        }

        .globe {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 50%), linear-gradient(135deg, #0A2A4A, #152d47);
            position: relative;
            animation: spin 8s linear infinite;
            box-shadow: inset -4px -4px 8px rgba(0,0,0,0.3), 0 0 12px rgba(201,166,70,0.2);
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        /* continent shapes */
        .continent {
            position: absolute;
            background: rgba(201,166,70,0.6);
            border-radius: 40% 60% 60% 40% / 50%;
            opacity: .85;
        }

        .c1 {
            width: 12px;
            height: 10px;
            top: 12px;
            left: 8px;
        }

        .c2 {
            width: 10px;
            height: 14px;
            top: 20px;
            left: 22px;
            border-radius: 60% 40% 50% 50% / 60% 40% 60% 40%;
        }

        .c3 {
            width: 8px;
            height: 8px;
            top: 10px;
            left: 30px;
            border-radius: 50%;
        }

        .pin {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 8px var(--gold);
            animation: pulse 1.8s ease-in-out infinite;
        }

            .pin.uk {
                top: 14px;
                left: 20px;
            }

            .pin.mea {
                top: 28px;
                left: 28px;
                animation-delay: .9s;
            }

        @keyframes pulse {
            0%,100% {
                transform: scale(1);
                opacity: .9;
            }

            50% {
                transform: scale(1.6);
                opacity: .4;
            }
        }

        /* stagger */
        .counter-card.in-view.d1 {
            transition-delay: .05s;
        }

        .counter-card.in-view.d2 {
            transition-delay: .15s;
        }

        .counter-card.in-view.d3 {
            transition-delay: .25s;
        }

        .counter-card.in-view.d4 {
            transition-delay: .35s;
        }

        .counter-card.in-view.d5 {
            transition-delay: .45s;
        }

        .header-reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .8s, transform .8s;
        }

            .header-reveal.in-view {
                opacity: 1;
                transform: translateY(0);
            }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border-radius: 999px;
            background: rgba(201,166,70,0.15);
            border: 1px solid rgba(201,166,70,0.3);
            color: var(--gold);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

            .eyebrow::before {
                content: "";
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: var(--gold);
                box-shadow: 0 0 10px var(--gold);
                animation: pulseDot 1.8s ease-in-out infinite;
            }

        @keyframes pulseDot {
            0%,100% {
                opacity: 1;
            }

            50% {
                opacity: .4;
            }
        }

        .divider-line {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(51,51,51,0.15), transparent);
        }
    </style>
    <style>
        body {
            box-sizing: border-box;
        }

        .icon-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

            /* Golden fades out, then back in */
            .icon-wrap img.golden {
                animation: fadeOutIn 4s infinite;
            }

            /* Black fades in opposite phase */
            .icon-wrap img.black {
                animation: fadeInOut 4s infinite;
            }

        @keyframes fadeOutIn {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes fadeInOut {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }



        .icon-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

            /* Golden fades out, then back in */
            .icon-wrap img.golden {
                animation: fadeOutIn 4s infinite;
            }

            /* Black fades in opposite phase */
            .icon-wrap img.black {
                animation: fadeInOut 4s infinite;
            }

        @keyframes fadeOutIn {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes fadeInOut {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }



        .icon-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

            /* Golden fades out, then back in */
            .icon-wrap img.golden {
                animation: fadeOutIn 4s infinite;
            }

            /* Black fades in opposite phase */
            .icon-wrap img.black {
                animation: fadeInOut 4s infinite;
            }

        @keyframes fadeOutIn {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes fadeInOut {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }