:root {
            --primary-blue: #1a5f9e;
            --secondary-orange: #ff7a00;
            --dark-bg: #0d1b2a;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #6c757d;
            --accent-purple: #6a11cb;
            --success-green: #28a745;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #fff;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
        }
        .section-padding {
            padding: 80px 0;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
        }
        .hero-section {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #fff 0%, #ff7a00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 700px;
        }
        .btn-primary-custom {
            background: linear-gradient(to right, var(--secondary-orange), #ff5500);
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            color: white;
            box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
            color: white;
        }
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            color: white;
        }
        .btn-secondary-custom:hover {
            background: white;
            color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            color: var(--dark-bg);
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-blue), var(--secondary-orange));
            border-radius: 2px;
        }
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .section-subtitle {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 3rem;
        }
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 1.8rem;
        }
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-bg);
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .game-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-card-content {
            padding: 25px;
        }
        .game-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-bg);
        }
        .stats-section {
            background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(26, 95, 158, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
        }
        .stat-box {
            text-align: center;
            padding: 30px;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: white;
            background: linear-gradient(to right, #fff, var(--secondary-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-text {
            font-size: 1.3rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .team-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        .team-card-content {
            padding: 25px;
            text-align: center;
        }
        .team-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--dark-bg);
        }
        .team-position {
            color: var(--secondary-orange);
            font-weight: 600;
            margin-bottom: 15px;
        }
        .contact-info-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 1.8rem;
        }
        footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 70px 0 20px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
        }
        .footer-links h5 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            font-weight: 700;
            color: white;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-orange);
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            margin-right: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .social-icons a:hover {
            background: var(--secondary-orange);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
        }
        .flink {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin: 5px 8px 5px 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .flink:hover {
            background: rgba(255,122,0,0.2);
            color: white;
            border-color: var(--secondary-orange);
            transform: translateY(-2px);
        }
        .navbar-custom {
            background-color: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .navbar-custom.scrolled {
            padding: 12px 0;
            background-color: rgba(13, 27, 42, 0.98);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--secondary-orange);
        }
        .nav-link {
            color: rgba(255,255,255,0.85) !important;
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-orange) !important;
        }
        .mobile-app-badge {
            height: 45px;
            transition: all 0.3s ease;
        }
        .mobile-app-badge:hover {
            transform: translateY(-3px);
        }
        .form-control-custom {
            border-radius: 10px;
            padding: 15px 20px;
            border: 1px solid rgba(0,0,0,0.1);
            background: rgba(255,255,255,0.05);
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
        .form-control-custom:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 95, 158, 0.25);
        }
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            height: 100%;
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 5rem;
            color: var(--secondary-orange);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            font-weight: 700;
            color: var(--dark-bg);
        }
        .testimonial-role {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-purple));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: white;
            border: 4px solid var(--primary-blue);
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }
        .timeline-left {
            left: 0;
        }
        .timeline-right {
            left: 50%;
        }
        .timeline-left::after {
            right: -13px;
        }
        .timeline-right::after {
            left: -13px;
        }
        .timeline-content {
            padding: 20px 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .timeline-year {
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item::after {
                left: 20px;
            }
            .timeline-right {
                left: 0;
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--primary-blue);
            transform: translateY(-5px);
            color: white;
        }
        .aos-animate {
        }
        @media (max-width: 992px) {
            .navbar-collapse {
                background: rgba(13, 27, 42, 0.98);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
        }
