:root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --dark: #121826;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #00b894;
            --warning: #fdcb6e;
            --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #ffffff;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 1rem;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        h2.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .section-padding {
            padding: 5rem 0;
        }
        .btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
        }
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, 0.8);
        }
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .hero {
            background: linear-gradient(rgba(18, 24, 38, 0.85), rgba(18, 24, 38, 0.9)), 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: 8rem 0 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin-bottom: 2.5rem;
        }
        .navbar {
            background: rgba(18, 24, 38, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 0;
            transition: var(--transition);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .navbar.scrolled {
            padding: 0.8rem 0;
            box-shadow: var(--shadow);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            background: rgba(106, 17, 203, 0.2);
            color: #d1b6ff !important;
        }
        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
            display: flex;
            align-items: center;
        }
        .navbar-brand i {
            color: var(--primary);
            margin-right: 10px;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 20px;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: var(--transition);
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .game-card .card-body {
            padding: 1.8rem;
        }
        .stats-box {
            background: var(--gradient-primary);
            color: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .stats-box h3 {
            font-size: 3rem;
            margin-bottom: 0;
        }
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
        }
        .contact-info-box {
            background: var(--light);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #b0b7c3;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .friendlink {
            background: #f8f9fa;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 1rem 2rem;
            margin: 0.5rem;
            border-radius: 10px;
            color: var(--dark);
            font-weight: 600;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-decoration: none;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--secondary);
            border: 4px solid white;
            box-shadow: 0 0 0 4px var(--primary);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .hero h1 { font-size: 3rem; }
            .hero { padding: 7rem 0 4rem; min-height: auto; }
            .section-padding { padding: 3rem 0; }
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(106, 17, 203, 0.05);
            color: var(--primary);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
        }
