        /* ============================================
           Ready 2 Play - Complete CSS Implementation
           ============================================ */
        
        /* Design System Variables */
        :root {
            --primary-blue: #2563eb;
            --primary-teal: #06b6d4;
            --secondary-orange: #f97316;
            --secondary-yellow: #eab308;
            --accent-green: #10b981;
            --sport-energy: #dc2626;
            --outdoor-forest: #059669;
            --neutral-gray: #6b7280;
            --neutral-light: #f3f4f6;
            --neutral-white: #ffffff;
            --neutral-dark: #374151;
            
            --font-header: "Montserrat", sans-serif;
            --font-body: "Open Sans", sans-serif;
            --font-accent: "Poppins", sans-serif;
            
            --container-width: 1140px;
            --header-height: 70px;
            
            --shadow-card: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
            --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
            --gradient-secondary: linear-gradient(135deg, var(--secondary-orange), var(--secondary-yellow));
            --gradient-sport: linear-gradient(135deg, var(--sport-energy), var(--secondary-orange));
            --gradient-outdoor: linear-gradient(135deg, var(--outdoor-forest), var(--accent-green));
        }
        
        /* Base Styles */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-body); color: var(--neutral-dark); background-color: var(--neutral-white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        h1, h2, h3, h4, h5, h6 { font-family: var(--font-header); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
        h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); }
        h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
        h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
        p { margin-bottom: 1rem; font-size: 1.1rem; }
        a { text-decoration: none; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        
        /* Header & Navigation */
        .main-header {
            height: var(--header-height);
            background: var(--neutral-white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 998;
            transition: transform 0.4s ease;
        }
        .main-header.hidden { transform: translateY(-100%); }
        .main-header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .logo { font-family: var(--font-header); font-size: 1.8rem; font-weight: 800; color: var(--primary-blue); transition: color 0.3s ease; }
        .logo:hover { color: var(--primary-teal); }
        
        .main-navmenu-desktop { margin-left: auto; padding-right: 2rem; }
        .main-navmenu-desktop ul { display: flex; list-style: none; gap: 2rem; }
        .main-navmenu-desktop a { color: var(--neutral-gray); font-family: var(--font-accent); font-weight: 600; }
        .main-navmenu-desktop a:hover { color: var(--primary-blue); }
        
        .mobile-nav-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: var(--primary-blue); cursor: pointer; z-index: 1001; }
        
        .sub-nav { background: var(--gradient-sport); padding: 15px 0; z-index: 997; transition: all 0.3s ease; position: sticky; top: var(--header-height); }
        .sub-nav.sticky-top { top: 0; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
        .sub-nav ul { display: flex; justify-content: center; gap: 3rem; list-style: none; }
        .sub-nav a { color: var(--neutral-white); font-family: var(--font-accent); font-weight: 600; font-size: 1.1rem; padding: 10px 0; position: relative; }
        .sub-nav a:hover { color: var(--secondary-yellow); }
        .sub-nav a.active::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 3px; background: var(--secondary-yellow); }
        
        @media (max-width: 1024px) {
            .main-navmenu-desktop, .sub-nav { display: none; }
            .mobile-nav-toggle { display: block; }
        }
        
        /* Hero Section with Video Background */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #1e40af, #dc2626);
        }
        
        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .hero-video.loaded { opacity: 0.7; }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.8), rgba(220, 38, 38, 0.6));
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--neutral-white);
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: var(--neutral-white);
            padding: 8px 20px;
            border-radius: 25px;
            font-family: var(--font-accent);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #fbbf24);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            font-weight: 600;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 15px 30px;
            border-radius: 50px;
            font-family: var(--font-accent);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .hero-cta.primary {
            background: var(--gradient-secondary);
            color: var(--neutral-white);
            box-shadow: var(--shadow-card);
        }
        
        .hero-cta.primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            color: var(--neutral-white);
        }
        
        .hero-cta.secondary {
            background: rgba(255, 255, 255, 0.2);
            color: var(--neutral-white);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .hero-cta.secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            color: var(--neutral-white);
        }
        
        /* Why Flag Football Section */
        .flag-football-section {
            padding: 5rem 0;
            background: var(--neutral-white);
        }
        
        .flag-football-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .flag-football-content h2 {
            color: var(--sport-energy);
            margin-bottom: 1.5rem;
        }
        
        .flag-football-benefits {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: var(--neutral-light);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            background: var(--gradient-sport);
            color: var(--neutral-white);
            transform: translateX(10px);
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-sport);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .benefit-item:hover .benefit-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .flag-football-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        
        .image-placeholder {
            width: 100%;
            height: 400px;
            background: var(--gradient-sport);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            font-size: 3rem;
        }
        
        /* Other Sports Section */
        .other-sports-section {
            padding: 5rem 0;
            background: var(--neutral-light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--neutral-gray);
        }
        
        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .sport-card {
            background: var(--neutral-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .sport-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .sport-card:nth-child(1) .sport-image { background: var(--gradient-primary); }
        .sport-card:nth-child(2) .sport-image { background: var(--gradient-secondary); }
        .sport-card:nth-child(3) .sport-image { background: var(--gradient-outdoor); }
        .sport-card:nth-child(4) .sport-image { background: var(--gradient-sport); }
        
        .sport-image {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .sport-content {
            padding: 2rem;
        }
        
        .sport-content h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .age-breakdown {
            background: var(--neutral-light);
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        
        /* Outdoor Philosophy Section */
        .philosophy-section {
            padding: 5rem 0;
            background: var(--gradient-outdoor);
            color: var(--neutral-white);
            position: relative;
            overflow: hidden;
        }
        
        .philosophy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float-particles 20s linear infinite;
        }
        
        @keyframes float-particles {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }
        
        .philosophy-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .philosophy-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-yellow);
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 0.5rem;
        }
        
        /* Image Gallery Section */
        .gallery-section {
            padding: 5rem 0;
            background: var(--neutral-white);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            aspect-ratio: 4/3;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            font-size: 2rem;
            position: relative;
        }
        
        .gallery-item:nth-child(4n+1) .gallery-image { background: var(--gradient-primary); }
        .gallery-item:nth-child(4n+2) .gallery-image { background: var(--gradient-secondary); }
        .gallery-item:nth-child(4n+3) .gallery-image { background: var(--gradient-outdoor); }
        .gallery-item:nth-child(4n+4) .gallery-image { background: var(--gradient-sport); }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: var(--neutral-white);
            padding: 1rem;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        /* Horizontal Scroll Showcase */
        .showcase-section {
            padding: 5rem 0;
            background: var(--neutral-light);
            overflow: hidden;
        }
        
        .horizontal-scroll-container {
            margin-top: 2rem;
            overflow: hidden;
            position: relative;
        }
        
        .scroll-wrapper {
            display: flex;
            gap: 2rem;
            padding: 1rem 0;
            animation: scroll-horizontal 30s linear infinite;
            width: max-content;
        }
        
        .scroll-wrapper:hover {
            animation-play-state: paused;
        }
        
        @keyframes scroll-horizontal {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .showcase-card {
            flex: 0 0 350px;
            background: var(--neutral-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }
        
        .showcase-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .showcase-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-sport);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Social Media Integration */
        .social-section {
            padding: 5rem 0;
            background: var(--neutral-dark);
            color: var(--neutral-white);
        }
        
        .social-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .social-content h2 {
            color: var(--neutral-white);
            margin-bottom: 1.5rem;
        }
        
        .social-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 12px 24px;
            background: var(--gradient-sport);
            color: var(--neutral-white);
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
            color: var(--neutral-white);
        }
        
        .tiktok-embed {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .embed-placeholder {
            width: 100%;
            height: 400px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        /* Featured Videos Section */
        .videos-section {
            padding: 5rem 0;
            background: var(--neutral-white);
        }
        
        .video-player-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .main-video {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }
        
        .video-loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: center;
            color: var(--primary-blue);
        }
        
        .video-loader.hidden { display: none; }
        
        .loader-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--neutral-light);
            border-top: 4px solid var(--primary-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        #main-video-player {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        .video-sidebar h3 {
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }
        
        .video-thumbnails {
            display: grid;
            gap: 1rem;
        }
        
        .video-thumbnail {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: var(--neutral-light);
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .video-thumbnail.active {
            background: var(--gradient-sport);
            color: var(--neutral-white);
        }
        
        .video-thumbnail:hover {
            background: var(--gradient-primary);
            color: var(--neutral-white);
            transform: translateX(5px);
        }
        
        .video-thumbnail img {
            width: 80px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
        }
        
        .thumbnail-info h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .active-indicator {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60%;
            background: var(--secondary-yellow);
            border-radius: 0 4px 4px 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-thumbnail.active .active-indicator {
            opacity: 1;
        }
        
        /* PDF Download Section */
        .pdf-section {
            padding: 3rem 0;
            background: var(--neutral-light);
        }
        
        .pdf-download-card {
            background: var(--neutral-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-card);
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 2rem;
            align-items: center;
        }
        
        .pdf-content {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .pdf-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-sport);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neutral-white);
            font-size: 2rem;
        }
        
        .pdf-features {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        
        .pdf-features span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--accent-green);
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-sport);
            color: var(--neutral-white);
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
            color: var(--neutral-white);
        }
        
        .pdf-note {
            font-size: 0.9rem;
            color: var(--neutral-gray);
            margin-top: 0.5rem;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: var(--neutral-white);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .contact-info h2 {
            color: var(--primary-blue);
            margin-bottom: 2rem;
        }
        
        .learning-promise {
            display: flex;
            gap: 1rem;
            background: var(--gradient-outdoor);
            color: var(--neutral-white);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .promise-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-methods {
            display: grid;
            gap: 1rem;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--neutral-light);
            border-radius: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--neutral-dark);
        }
        
        .contact-method:hover {
            background: var(--gradient-sport);
            color: var(--neutral-white);
            transform: translateX(10px);
        }
        
        .contact-method i {
            font-size: 1.5rem;
            width: 40px;
            text-align: center;
        }
        
        .contact-form {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 20px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--neutral-dark);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid transparent;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--neutral-white);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: 0;
            border-color: var(--sport-energy);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }
        
        .form-group input.is-valid {
            border-color: var(--accent-green);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }
        
        .form-group input.is-invalid {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }
        
        .phone-counter-class {
            color: var(--neutral-gray);
            font-weight: 500;
            font-size: 0.9em;
            margin-left: 8px;
        }
        
        .submit-btn {
            background: var(--gradient-sport);
            color: var(--neutral-white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
        }
        
        #form-success-message {
            background-color: #e0f2f1;
            border-left: 5px solid var(--accent-green);
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1.5rem;
            font-weight: 500;
            color: var(--neutral-dark);
        }
        
        /* Footer */
        .footer {
            background: var(--neutral-dark);
            color: var(--neutral-light);
            padding: 3rem 0 1rem;
            text-align: center;
        }
        
        .footer-content {
            margin-bottom: 2rem;
        }
        
        .footer h3 {
            color: var(--neutral-white);
            margin-bottom: 1rem;
        }
        
        .footer p {
            color: var(--neutral-gray);
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--gradient-sport);
            color: var(--neutral-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--neutral-gray);
            padding-top: 1rem;
            color: var(--neutral-gray);
        }
        
        /* Utility Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hover-lift {
            transition: transform 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
        }
        
        .scroll-padding {
            scroll-margin-top: 100px;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--neutral-dark);
            z-index: 1000;
            display: none;
            flex-direction: column;
        }
        
        .mobile-nav.active {
            display: flex;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
            padding: 0 20px;
            background: var(--neutral-white);
            flex-shrink: 0;
        }
        
        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        .mobile-nav-content {
            padding: 2rem;
            overflow-y: auto;
        }
        
        .mobile-nav-heading {
            font-size: 1rem;
            color: var(--neutral-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            margin-top: 2rem;
        }
        
        .mobile-nav-heading:first-of-type {
            margin-top: 0;
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav-content li {
            margin-bottom: 0.5rem;
        }
        
        .mobile-nav-content a {
            display: block;
            color: var(--neutral-white);
            font-family: var(--font-header);
            font-size: 1.5rem;
            padding: 0.5rem 0;
        }
        
        .mobile-nav-content a:hover {
            color: var(--sport-energy);
        }
        
        body.mobile-menu-open {
            overflow: hidden;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-content {
                padding: 1rem;
            }
            
            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }
            
            .flag-football-grid,
            .contact-grid,
            .social-grid,
            .video-player-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .sports-grid {
                grid-template-columns: 1fr;
            }
            
            .philosophy-stats {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1rem;
            }
            
            .pdf-download-card {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .pdf-content {
                justify-content: center;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .sections {
                padding: 3rem 0;
            }
            
            #main-video-player {
                height: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-cta {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .showcase-card {
                flex: 0 0 280px;
                padding: 1.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .philosophy-stats {
                grid-template-columns: 1fr;
            }
        }