:root {
            --primary: #2a0a5e;
            --secondary: #ff4d8d;
            --accent: #00d4ff;
            --dark: #0f041f;
            --light: #f8f9ff;
            --gray: #6c757d;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            background-color: var(--light);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .display-font {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
        }
        .navbar {
            background-color: rgba(15, 4, 31, 0.95);
            backdrop-filter: blur(10px);
            padding-top: 1rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--accent);
        }
        .nav-link {
            color: #ddd !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(15, 4, 31, 0.85), rgba(42, 10, 94, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-title span {
            color: var(--accent);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            color: var(--dark);
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            bottom: -10px;
            left: 0;
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 77, 141, 0.3);
            color: white;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .footer {
            background-color: var(--dark);
            color: #ccc;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent);
        }
        .friendlink-section {
            background-color: #1a0a35;
            padding: 2rem 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 30px;
            color: #ddd;
            transition: all 0.3s;
            text-decoration: none;
            border: 1px solid transparent;
        }
        .flink:hover {
            background-color: rgba(0, 212, 255, 0.1);
            color: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .game-card-img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-hover:hover .game-card-img {
            transform: scale(1.05);
        }
        .team-member {
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        .team-member:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 250px;
            object-fit: cover;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 6rem 0 4rem;
                text-align: center;
            }
        }
