        /* --- 1. Global & Neon Background --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif; /* Tech/Gaming Font */
            color: #e0f7fa;
            background-color: #050011;
            /* Cyber Grid Background Pattern */
            background-image: 
                linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px; /* Grid size */
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative; /* For the subtle background radial gradient */
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 10%, rgba(75, 0, 130, 0.3) 0%, transparent 50%); /* Subtle Purple Glow from top */
            pointer-events: none;
            z-index: -1;
        }

        h1, h2, h3, .logo {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        a { text-decoration: none; color: inherit; }

        /* --- 2. Holographic Header --- */
        header {
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(5, 0, 17, 0.7);
            backdrop-filter: blur(4px);
            border-bottom: 1px solid rgba(0, 242, 255, 0.3);
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(90deg, #00f2ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.8));
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            transition: 0.3s;
        }

        nav a:hover {
            color: #ff00ff; /* Neon Magenta Hover */
            text-shadow: 0 0 8px #ff00ff, 0 0 15px #ff00ff;
        }

        /* --- 3. Neon Hero Section with Background Image --- */
        .hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            position: relative;
            background-image: url('online_games4.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden; /* Ensure glowing orb stays within hero */
        }

        /* Dark overlay for text readability */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Dark overlay */
            z-index: 1;
        }

        /* Glowing Orb effect behind text */
        .hero-content {
            position: relative;
            z-index: 2; /* Bring content above overlay */
            animation: fadeIn 2s ease-out;
        }

        .hero-content::after { /* Orb effect */
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 0, 255, 0.4) 0%, transparent 70%);
            filter: blur(50px);
            z-index: -1;
            animation: floatOrb 6s infinite alternate;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 
                0 0 5px #fff,
                0 0 10px #fff,
                0 0 20px #00f2ff,
                0 0 40px #00f2ff,
                0 0 80px #00f2ff;
        }

        .hero p {
            font-size: 1.4rem;
            max-width: 700px;
            margin-bottom: 40px;
            color: #d1c4e9;
            border-left: 3px solid #ff00ff;
            padding-left: 20px;
            background: linear-gradient(90deg, rgba(255,0,255,0.1), transparent);
        }

        .btn {
            padding: 15px 45px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            color: white;
            background: transparent;
            border: 2px solid #ff00ff;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 0 10px #ff00ff inset, 0 0 20px #ff00ff;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background: #ff00ff;
            color: #050011;
            box-shadow: 0 0 40px #ff00ff;
        }

        /* --- 4. Cyber Cards (Games) --- */
        .section-container {
            padding: 80px 5%;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            color: white;
            text-shadow: -2px 2px 0px #ff00ff, 2px -2px 0px #00f2ff; 
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .game-card {
            background: rgba(16, 16, 36, 0.8);
            border: 1px solid rgba(0, 242, 255, 0.3);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        /* Hover effect: Neon Border Glow */
        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #00f2ff;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.6), inset 0 0 20px rgba(0, 242, 255, 0.2);
        }

        .game-thumb img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            filter: saturate(1.2) brightness(0.9); /* Enhance colors */
        }

        .game-card h3 {
            margin-bottom: 15px;
            color: #fff;
            font-weight: 400;
        }

        .play-link {
           color: #c012ce;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px;
        }
        
        .play-link:hover {
            color: #ff00ff;
            text-shadow: 0 0 5px #ff00ff;
        }

        
        
        .highlight {
            color: #ff00ff;
            font-weight: 700;
            text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
        }

        /* --- 6. FAQ Section (Holographic Logs) --- */
        .faq-item {
            background: rgba(0, 0, 0, 0.4);
            margin-bottom: 20px;
            border-left: 3px solid #00f2ff;
            transition: 0.3s;
        }

        .faq-item[open] {
            border-left: 3px solid #ff00ff;
            background: rgba(255, 0, 255, 0.05);
        }

        summary {
            padding: 20px;
            cursor: pointer;
            color: #e0f7fa;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            list-style: none;
            border:3px solid #ff00ff
        }

        summary:hover {
            background: rgba(0, 242, 255, 0.1);
        }

        summary::after { content: '+'; color: #00f2ff; font-size: 1.5rem; }
        details[open] summary::after { content: '-'; color: #ff00ff; }

        .faq-answer {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #cfd8dc;
            line-height: 1.6;
        }

        /* --- 7. Footer --- */
        footer {
            background: #02000a;
            padding: 50px 20px;
            text-align: center;
            border-top: 2px solid #00f2ff;
            box-shadow: 0 -10px 30px rgba(0, 242, 255, 0.1);
            margin-top: 80px;
        }

        footer h3 {
            background: linear-gradient(90deg, #00f2ff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .disclaimer {
            font-size: 0.8rem;
            color: #546e7a;
            max-width: 800px;
            margin: 0 auto;
            font-family: sans-serif;
        }

        @keyframes floatOrb {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
            50% { transform: translate(-50%, -60%) scale(1.1); opacity: 0.9; }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            header { flex-direction: column; gap: 15px; }
            .hero p { font-size: 1.1rem; }
        }
        /* Section container */
.section-container {
    padding: 80px 0;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #fff;
}

/* 2 column wrapper */
.about-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #1b0e22;
    border-radius: 20px;
    overflow: hidden;
    gap: 0;
}

/* Left Column: Background Image */
.about-background-image {
    background: url("ab.avif");
    background-size: cover;
    background-position: center;
    min-height: 380px;
}

/* Right Column: Text Content */
.about-content {
    padding: 40px 50px;
    color: #ddd;
    font-size: 18px;
    line-height: 1.7;
}

.highlight {
    color: #ff9d00;
    font-weight: 600;
}

/* Mobile Responsive (Stack Columns) */
@media (max-width: 768px) {
    .about-section-wrapper {
        grid-template-columns: 1fr;
    }

    .about-background-image {
        height: 250px;
    }
}
/* TEAM SECTION */
.team-section {
       padding: 80px 20px;
    background: linear-gradient(90deg, #510657, #086368);
    text-align: center;
    color: #fff;
}

.team-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-title span {
    color: #ffb347;
}

.team-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #e2cfcf;
}

.team-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
    padding: 25px 20px;
    width: 280px;
    text-align: center;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(0,0,0,0.35);
}

.profile-img {
    width: 100%;
    height: 200px;
    background: url('user.png') center/contain no-repeat;
    margin-bottom: 15px;
    opacity: 0.85;
}

.team-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
}

.role {
    font-size: 14px;
    color: #cbbaba;
}
