/* GENERATED by extractors/extract_page_assets.py — do not hand-edit.
   Lifted from an inline <style> in the source page; relative url()
   targets are rebased for this file's depth. */
/* .reveal-card {
            opacity: 1;
        } */
        .sport-tile {
            padding: 18px 8px 8px;
        }

        .pointer-section--disciplines {
            background: linear-gradient(135deg, rgba(8, 38, 82, 0.94) 0%, rgba(15, 58, 113, 0.92) 58%, rgba(56, 166, 221, 0.9) 100%);
        }


        .hero-container {
            width: 100%;
            max-width: 100%;
            min-height: 80vh;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 10rem;
            background: linear-gradient(135deg, rgba(8, 38, 82, 0.94) 0%, rgba(15, 58, 113, 0.92) 58%, rgba(56, 166, 221, 0.9) 100%);
            overflow: hidden;
            /* padding-left: 120px; */
        }

        /* --- LEFT CONTENT SECTION --- */
        .content-section {
            max-width: 520px;
            z-index: 2;
        }

        .headline {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .subtext {
            color: #a0a0ab;
            font-size: 1.125rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .button-group {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.875rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .btn-primary {
            background-color: #3b82f6;
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: #2563eb;
            color: #ffffff;
        }

        .btn-secondary:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
        }

        /* --- RIGHT SLIDER SECTION --- */
        .slider-section {
            position: relative;
            height: 80vh;
            overflow: hidden;
            display: flex;
            gap: .5rem;
            /* Subtle fade gradients at top and bottom to smooth out entering/exiting elements */
            mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
            transform: rotate(11deg);
        }

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

        /* Column Track (holds duplicates for seamless looping) */
        .column-track {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

        /* --- ANIMATIONS --- */
        .col-up {
            animation: scrollUp 20s linear infinite;
        }

        .col-down {
            animation: scrollDown 20s linear infinite;
        }

        /* Hover effect: pause slider on hover */
        .slider-section:hover .column-track {
            animation-play-state: paused;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }

            100% {
                /* Move up by half the total height (1 set of images out of 2) */
                transform: translateY(-50%);
            }
        }

        @keyframes scrollDown {
            0% {
                transform: translateY(-50%);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* --- CARD & IMAGE STYLING --- */
        .card {
            width: 100%;
            height: 350px;
            border-radius: 30px;
            /* Pill shape matching the reference UI */
            overflow: hidden;
            flex-shrink: 0;
            background: transparent;
            border: none;
        }

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

        /* Color variations for card backgrounds */
        /* .bg-amber {
            background-color: #f59e0b;
        }

        .bg-green {
            background-color: #10b981;
        }

        .bg-orange {
            background-color: #f97316;
        }

        .bg-purple {
            background-color: #7c3aed;
        }

        .bg-teal {
            background-color: #14b8a6;
        }

        .bg-dark {
            background-color: #1f2937;
        } */

        .story-two {
            z-index: 100;
            opacity: 0;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 900px) {
            .hero-container {
                grid-template-columns: 1fr;
                padding-top: 4rem;
                gap: 3rem;
                padding-left: 24px;
                padding-right: 24px;
                padding-bottom: 4rem;
            }

            .headline {
                font-size: 2.5rem;
            }

            .slider-section {
                height: 500px;
            }

            .content-section {
                max-width: 100%;
                padding: 0 8px;
            }

            .subtext {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-container {
                gap: 2rem;
                padding-top: 3rem;
                padding-bottom: 3rem;
            }

            .headline {
                font-size: 1.9rem;
            }

            .slider-section {
                height: 360px;
                transform: rotate(6deg);
            }

            .card {
                height: 260px;
                border-radius: 18px;
            }

            .button-group {
                flex-direction: column;
            }

            .btn {
                text-align: center;
            }
            .story-two {
                opacity: 0;
                transform: translateY(40px);
                transition: opacity .6s ease, transform .6s ease;
            }

            .story-two.show-heading {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
        }
