:root {
            --bg-dark-primary: #111827;
            --bg-dark-secondary: #1f2937;
            --accent-primary: #f59e0b;
            --accent-secondary: #eab308;
            --text-primary: #f9fafb;
            --text-secondary: #d1d5db;
            --border-color: #374151;
            --shadow-color: rgba(0, 0, 0, 0.5);
            --font-family-sans: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-sans);
            background-color: var(--bg-dark-primary);
            color: var(--text-primary);
            line-height: 1.6;
        }

        a {
            color: var(--text-primary);
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        img, svg {
            max-width: 100%;
            display: block;
        }

        section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            text-align: center;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 3rem auto;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-align: center;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .btn-primary {
            background-color: var(--accent-primary);
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: var(--accent-secondary);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: var(--bg-dark-secondary);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background-color: var(--border-color);
            transform: translateY(-2px);
        }

        /* Header / Navigation */
        .header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(17, 24, 39, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 5rem;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
        }

        .nav-logo-accent {
            color: var(--accent-primary);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            font-weight: 600;
            transition: color 0.2s ease;
            position: relative;
            padding-bottom: 4px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-primary);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }


        /* Hero Section */
        #home {
            text-align: center;
            padding: 8rem 2rem 6rem;
        }

        .hero-title {
            font-size: clamp(3rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 1.5rem auto 2.5rem;
        }

        /* Sports Section */
        .sports-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .sport-card {
            flex-grow: 1;
            flex-basis: 200px;

            background-color: var(--bg-dark-secondary);
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            /* Add these two lines to override default link styles */
            text-decoration: none;
            color: inherit;
        }

        .sport-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px var(--shadow-color);
            border-color: var(--accent-primary);
        }

        .sport-card-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            /* This filter recolors the black SVG to your accent color */
            filter: brightness(0) saturate(100%) invert(70%) sepia(53%) saturate(5157%) hue-rotate(359deg) brightness(98%) contrast(101%);
        }

        .sport-card-title {
            font-size: 1.25rem;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background-color: var(--bg-dark-primary);
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .footer-container {
            border-top: 1px solid var(--border-color);
            padding-top: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--accent-primary);
        }

        .footer-socials {
            display: flex;
            gap: 1.5rem;
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            color: var(--text-secondary);
            transition: color 0.2s, transform 0.2s;
        }

        .social-link:hover svg {
            color: var(--accent-primary);
            transform: scale(1.1);
        }

        .footer-copy {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 2rem;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 5rem;
                left: -100%;
                width: 100%;
                height: calc(100vh - 5rem);
                background-color: var(--bg-dark-primary);
                flex-direction: column;
                justify-content: center;
                gap: 2.5rem;
                transition: left 0.3s ease-in-out;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-toggle {
                display: block;
            }

            .nav-item {
                width: 100%;
                text-align: center;
            }

            .nav-link {
                font-size: 1.25rem;
            }

            .nav-actions {
                display: none; /* Hide desktop button */
            }

            section {
                padding: 4rem 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            #home {
                padding-top: 6rem;
            }

        }
        