:root {
            --primary-dark: #0d1b2a;
            --primary-accent: #4361ee;
            --secondary-accent: #f72585;
            --neutral-light: #f8f9fa;
            --neutral-mid: #adb5bd;
            --gradient-primary: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 100%);
            --gradient-accent: linear-gradient(90deg, #4361ee 0%, #3a0ca3 100%);
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fefefe;
        }
        h1, h2, h3, h4, h5, .display-1, .display-2, .navbar-brand {
            font-family: 'Oxanium', cursive;
            font-weight: 700;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .hero-section {
            background: var(--gradient-primary), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }
        .btn-primary-custom {
            background: var(--gradient-accent);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }
        .navbar {
            background-color: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            padding: 0.7rem 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            left: 0;
            bottom: -5px;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .card-game {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            background: white;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-game:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-game:hover .card-img-top {
            transform: scale(1.05);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--gradient-accent);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-section {
            background: var(--gradient-primary);
            color: white;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            font-family: 'Oxanium', cursive;
            color: var(--secondary-accent);
            line-height: 1;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid #f0f0f0;
            transition: border-color 0.3s ease;
        }
        .team-member:hover .team-img {
            border-color: var(--primary-accent);
        }
        .contact-form .form-control {
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary-accent);
            box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--neutral-mid);
            padding: 4rem 0 2rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: inline-block;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-accent);
            transform: translateY(-3px);
        }
        .friendlink .flink {
            background-color: white;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .friendlink .flink:hover {
            border-color: var(--primary-accent);
            color: var(--primary-accent);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
