        /* --- 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;
        }

        .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;
        }

        /* --- Global Theme Colors (Moved inside .hero for robustness) --- */
.hero {
    /* Define Variables directly in the element's context */
    --primary-neon-light: #6afff1; /* Lighter Cyan */
    --primary-neon-dark: #00f2ff;  /* Deeper Cyan */
    --secondary-neon-light: #ff60e6; /* Lighter Magenta */
    --secondary-neon-dark: #ff00ff; /* Deeper Magenta */
    --dark-bg: #0d0d10;
    --text-color: #e0e0e0;

    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 5%;
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
    perspective: 1000px;
}

/* --- ANIMATED GRID LINES (GROUND PLANE) --- */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.5) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(70deg) translateY(50%);
    transform-origin: bottom center;
    opacity: 0.2;
    z-index: 0;
    animation: gridScroll 15s linear infinite;
    box-shadow: 0 0 100px 50px rgba(0,0,0,0.8) inset;
}

@keyframes gridScroll {
    from { background-position: 0 0; }
    to { background-position: 0 100%; }
}

/* --- ANIMATED BACKGROUND TRIANGLES & DUAL-TONE NEBULA --- */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        /* Directly using hex values for safety */
        radial-gradient(circle at 20% 80%, rgba(0, 242, 255, 0.2) 0%, transparent 50%), 
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.2) 0%, transparent 50%), 
        /* Directly using hex values for safety in SVG data */
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,0 100,100 0,100" fill="transparent" stroke="%2300F2FF" stroke-width="2" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    animation: triangleFloat 20s linear infinite, nebulaPulse 10s ease-in-out infinite alternate;
}

@keyframes triangleFloat {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes nebulaPulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* --- HERO CONTENT (TEXT & BUTTON) --- */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-out;
    padding-bottom: 50px;
}

/* --- CENTRAL ANIMATED ORB/WIREFRAME --- */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    /* Directly using hex values for safety */
    border: 4px solid; 
    border-image: linear-gradient(45deg, #00f2ff, #ff00ff) 1;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 70%);
    filter: blur(2px);
    transform: translate(-50%, -50%) rotateY(0deg);
    animation: rotateOrb 15s linear infinite, pulseGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes rotateOrb {
    from { transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg); }
    to { transform: translate(-50%, -50%) rotateY(360deg) rotateX(360deg); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px #6afff1, 0 0 40px #ff60e6; opacity: 0.9; }
    50% { box-shadow: 0 0 30px #6afff1, 0 0 60px #ff60e6; opacity: 1; }
    100% { box-shadow: 0 0 20px #6afff1, 0 0 40px #ff60e6; opacity: 0.9; }
}


/* --- HEADING STYLING --- */
.hero h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Directly using hex values for safety */
    /* text-shadow: 
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #6afff1,
        0 0 40px #00f2ff,
        0 0 60px #ff60e6,
        0 0 80px #ff00ff; */
}

/* --- PARAGRAPH STYLING --- */
.hero p {
    font-size: 1.4rem;
    /* max-width: 800px; */
    margin-bottom: 50px;
    color: #e0e0e0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-top: 0;
}

/* --- BUTTON STYLING --- */
.btn-primary-neon {
    /* Directly using hex values for safety */
    background: linear-gradient(45deg, #00f2ff, #ff00ff); 
    color: #fff;
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* Directly using hex values for safety */
    box-shadow: 0 0 15px #6afff1, 0 0 30px #ff60e6;
}

.btn-primary-neon:hover {
    /* Directly using hex values for safety */
    background: linear-gradient(45deg, #ff00ff, #00f2ff); 
    color: #fff;
    box-shadow: 
        0 0 10px #6afff1, 
        0 0 40px #6afff1,
        0 0 20px #ff60e6, 
        0 0 60px #ff60e6;
    transform: scale(1.05);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 4rem; letter-spacing: 3px; }
    .hero p { font-size: 1.2rem; max-width: 700px; }
    .hero-content::before { width: 300px; height: 300px; }
    .btn-primary-neon { padding: 15px 35px; font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .hero { height: 90vh; }
    .hero h1 { font-size: 2.8rem; letter-spacing: 2px; }
    .hero p { font-size: 1rem; max-width: 90%; margin-bottom: 40px; }
    .hero-content { padding-bottom: 30px; }
    .hero-content::before { width: 250px; height: 250px; }
    .btn-primary-neon { padding: 12px 25px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; letter-spacing: 1px; }
    .hero p { font-size: 0.9rem; }
    .hero-content::before { width: 200px; height: 200px; }
    .btn-primary-neon { font-size: 0.9rem; padding: 10px 20px; }
}

        /* --- 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);
        }

        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; }



        /* 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;
}

.highlight {
    color: #ff9d00;
    font-weight: 600;
}



    /* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: 0.3s ease;
}

/* Modal Box */
.modal-box {
    background: #1c1a24;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    animation: popIn 0.3s ease;
}

/* Close Button */
.close-btn {
       position: absolute;
    right: 12px;
    top: 5px;
    font-weight: 600;
    font-size: 37px;
    color: #0d0d0d;
    cursor: pointer;
    background: #fff;
    padding: 0px 9px;
    border-radius: 11px;
}

/* iFrame */
#gameFrame {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    background: #000;
}

/* Animation */
@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

    /* MATCHES SECTION */

    .matches-section {
        padding: 80px 20px;
        /* Custom Section Background */
        background-image: url('https://wp.dynamiclayers.net/galactic/wp-content/themes/galactic/assets/img/body-bg.jpg');
        background-color: rgba(10, 5, 25, 0.9); /* Dark background with slight transparency */
        background-size: cover;
        background-attachment: fixed; /* Ensures background scrolls with the body, not the section */
        /* --- */
        min-height: 100vh;
        text-align: center;
        overflow-x: hidden;
    }

    .main-title {
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        line-height: 1.1;
        text-align: center;
    }

    .main-title span { color: #bd00ff; }

    .subline {
        color: #a8a8a8;
        font-size: 16px;
        margin-bottom: 80px;
        line-height: 1.5;
        text-align: center;
    }

    .match-row {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto 70px auto;
        position: relative;
    }

    /* CENTER TIME */
    .match-center {
        width: 200px;
        text-align: center;
        z-index: 2;
        flex-shrink: 0;
    }

    .time-big {
        font-size: 56px;
        font-weight: 700;
        line-height: 1;
        margin: 0;
        text-shadow: 0 0 20px rgba(255,255,255,0.3);
    }

    .date-small {
        color: #a8a8a8;
        font-size: 14px;
        margin-top: 5px;
        display: block;
    }

    .stream-icons {
        margin-top: 10px;
        font-size: 20px;
        color: white;
        opacity: 0.7;
    }

    /* TEAM WRAPPER */
    .team-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        position: relative;
    }

    /* --- LEFT TEAM SETUP (UPDATED) --- */
    .team-wrapper.left {
        justify-content: flex-end; 
        padding-right: 20px;
    }

    .team-wrapper.left .text-box {
        background: linear-gradient(90deg, rgba(25,10,50,0) 0%, rgba(46, 57, 186, 0.8) 100%);
        text-align: left; /* Text aligns left now to be next to logo */
        padding-left:74px; /* Space for the Logo on the left */
        padding-right: 0px;
        border-right: 4px solid #4fdcff;
    }

    .team-wrapper.left .team-logo {
        margin-right: -60px; /* Overlap logic: Pull logo right over the text box */
        margin-left: 0;
        z-index: 10; /* Ensure logo is on top */
    }

    /* --- RIGHT TEAM SETUP (UNCHANGED) --- */
    .team-wrapper.right {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .team-wrapper.right .text-box {
        background: linear-gradient(270deg, rgba(25,10,50,0) 0%, rgba(135, 12, 184, 0.8) 100%);
        text-align: left;
        padding-right: 0px;
        padding-left: 60px;
        border-left: 4px solid #d400ff;
    }

    .team-wrapper.right .team-logo {
        order: 1; /* Visual reordering: Text first, then Logo */
        margin-right: -60px;
        margin-left: 0;
        z-index: 10;
    }

    /* SHARED STYLES */
    .text-box {
        width: 100%;
        max-width: 300px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: skewX(-20deg);
        position: relative;
    }

    .inner-text {
        transform: skewX(20deg);
    }

    .team-name {
        font-size: 21px;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
        line-height: 25px;
        letter-spacing: 1px;
    }

    .match-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        background: #0088ff;
        padding: 4px 10px;
        margin-top: 8px;
        border-radius: 2px;
        text-transform: uppercase;
        box-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
    }
    
    .team-wrapper.right .match-tag {
        background: #bd00ff;
        box-shadow: 0 0 10px rgba(189, 0, 255, 0.5);
    }

    /* LOGO STYLES */
    .team-logo {
        width: 140px;
        height: 150px;
        object-fit: contain;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
        transition: transform 0.3s ease;
    }
    
    .team-logo:hover {
        transform: scale(1.1) rotate(-5deg);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .match-row { flex-direction: column; gap: 30px; }
        .match-center { order: 2; margin: 20px 0; }
        .team-wrapper.left { order: 1; justify-content: center; padding: 0; }
        .team-wrapper.right { order: 3; justify-content: center; padding: 0; }
        
        .text-box {
            transform: skewX(0deg);
            text-align: center !important;
            padding: 20px !important;
            height: auto;
            border: none !important;
            background: rgba(255,255,255,0.05) !important;
            margin: 0 !important;
        }
        .inner-text { transform: skewX(0deg); }
        .team-logo {
            margin: 0 auto 15px auto !important;
            display: block;
        }
        /* Mobile: Always Logo on Top */
        .team-wrapper { flex-direction: column !important; }
        .team-wrapper.left .team-logo { margin-right: auto; }
    }
    .play-btn{
        background: linear-gradient(45deg, #c55c5c, #ffc12ff5);
    padding: 4px 5px;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: 600;
    color: white;
     cursor: pointer;
    transition: 0.3s ease;
    font-size: 15px;
    }

.play-btn:hover {
    background: #ffaa00;
    color: #fff;
    transform: translateY(-3px);
}

.join-tournament-section {
    padding: 0px 20px 120px;
    background: #071014;
    position: relative;
    overflow: hidden;
    text-align: center;

    background-image: url('https://wp.dynamiclayers.net/galactic/wp-content/themes/galactic/assets/img/body-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.join-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 70px;
}

/* LEFT & RIGHT CHARACTERS */
.join-container::before,
.join-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 500px;
    height: 99%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 2;
}

/* LEFT CHARACTER */
.join-container::before {
    left: -33px;
        z-index: 200;
    background-image: url('b.png');
}

/* RIGHT CHARACTER */
.join-container::after {
    right: -60px;
        z-index: 200;
    background-image: url('hero-1-6.png');
}

/* CENTER BOX */
.content-box {
    position: relative;
    z-index: 10;
    background: #0c1217b8;
    padding: 70px 80px;
    max-width: 661px;

  
}

.join-title {
    font-size: 29px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.join-title span {
    color: #00ff80;
}

.join-subline {
    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* BUTTON */
.join-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: #00ff80;
    border: 2px solid #00ff80;
    background: #000;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.5);
}

.join-btn:hover {
    background: #00ff80;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 255, 128, 1);
}

.join-btn .arrow {
    margin-left: 10px;
    transition: 0.3s;
}

.join-btn:hover .arrow {
    margin-left: 18px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .join-container::before,
    .join-container::after {
        width: 350px;
        bottom: -20px;
            z-index: 200;
    }
}

@media (max-width: 992px) {
    .join-container::before,
    .join-container::after {
        display: none;
    }
    .content-box {
        margin: 0 25px;
        padding: 50px 40px;
        border-radius: 10px;
        clip-path: none;
    }
    .join-title {
        font-size: 29px;
    }
}
/* General Reset/Theme setup for the section */
.about-section {
    background-color: #0b0c0f; /* Dark background */
    color: #ffffff; /* White text */
    padding: 80px 5%;
    font-family: Arial, sans-serif; /* Use a modern, readable font */
}

/* Container for the # tag and main title */
.about-heading-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: left; /* Align title/tag left */
}

/* The small tag above the main title */
.icon-tag {
    color: #4CAF50; /* Green color for the hash tag */
    font-size: 1em;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Main Title - Forging Legends... */
.about-heading {
    font-size: 2.5em;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

/* Main Layout Wrapper (Image on left, Features on right) */
.about-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; /* Space between image and features */
    align-items: center;
}

/* Image Container */
.about-img-container {

    position: relative;
    overflow: hidden;
    /* Create the rounded, dark background effect seen in the image */
    background: linear-gradient(145deg, #1f2229, #131418);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1); /* Subtle neon glow */
}

/* The actual image */
.dark-knight-img {
    width: 450px;
    height: 462px;
    display: block;
    border-radius: 10px;
    /* Apply a dark, neon filter to the image to match the aesthetic */
    filter: brightness(0.8) contrast(1.2);
}

/* Features Container on the right */
.about-features {
    flex: 1; /* Takes up 50% of the space */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    /* Container for the image, icon-tag, and H3 */
.about-header {
    display: flex;
    align-items: center; /* Vertically center the image and text */
    margin-bottom: 0px;
    background-color: #0d0e12; 
    padding: 20px;
    border-radius: 10px;
}

/* Styling for the Panda image */
.header-icon-img {
    width: 80px; /* Adjust size as needed */
    height: auto;
    margin-right: 20px;
    /* Optional: Add a slight shadow/glow to match the aesthetic */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); 
}

/* Container for the text content next to the image */
.header-text-content {
    display: flex;
    flex-direction: column;
}

/* Style for the hash tag (# About Our Gaming Site) */
.icon-tag {
    color: #4CAF50; /* Neon green color */
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 5px;
    display: block; /* Ensure it takes its own line */
}

.about-features h3 {
    font-size:17.5px;
    color: #ffffff;
    line-height: 1.2;
    margin: 0; 
    font-weight: 800; /* Make it bold */
}

.about-features {
    display: flex;
    flex-direction: column;
}
.about-features .about-main-title {
    font-size: 24px !important;
}


/* Individual Feature Item */
.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    /* Subtle background and border for the feature blocks */
    background-color: #1a1c21;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}

.feature-item:hover {
    background-color: #21242b;
    transform: translateY(-2px);
}

/* Feature Icon Styling - The colored circles/borders */
.feature-icon {
    font-size: 2em;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    /* Using different colors for each icon set, similar to the image */
}

.feature-icon-programs {
    border-color: #4CAF50; /* Green/Neon Green */
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.feature-icon-tournaments {
    border-color: #FFC107; /* Gold/Yellow */
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}

.feature-icon-support {
    border-color: #9C27B0; /* Purple/Violet */
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

/* Feature Text */
.feature-title {
    font-size: 1.3em;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.feature-description {
    font-size: 0.95em;
    color: #b0b0b0; /* Lighter text for descriptions */
    margin: 0;
}

/* Media Query for responsiveness on smaller screens */
@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column;
    }
    
    .about-img-container {
        order: 2; /* Put image below features on mobile */
    }

    .about-features {
        order: 1; /* Put features above image on mobile */
    }
    
    .about-heading-container {
        text-align: center;
    }
}


/* --- NEW FAQ SECTION: SINGLE COLUMN WITH SIDE ANCHOR --- */

/* Base Container */
.section-container#faq {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5%;
    background-color: #050508;
    color: #f0f0f0;
    font-family: 'Consolas', monospace;
    overflow: hidden;
}

/* Master Wrapper: Sets up the 2-column division (Image | Content) */
.faq-master-wrapper {
    display: grid;
    /* Ratio: 0.8fr for the visual side, 1.2fr for the content */
    grid-template-columns: 0.8fr 1.2fr; 
    gap: 50px;
    align-items: flex-start;
}

/* --- COLUMN 1: VISUAL ANCHOR (Replaces Side Image) --- */
.faq-visual-anchor {
    position: sticky;
    top: 50px; 
    text-align: center;
    padding-top: 50px;
}

/* --- OPTION 1: ADD A HIGH-TECH IMAGE HERE --- */
.anchor-image {
    width: 100%;
    height: 453px;
    margin: 0 auto 20px;
    
    /* 💥 Place your High-Tech/Cyberpunk Image URL here 💥 */
    background-image: url('faq.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Neon Glow Overlay and Border */
    border: 4px solid; 
    border-image: linear-gradient(135deg, #109030, #ff00ff) 1;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%); 
    
    /* Subtle Dark Overlay on Image */
    position: relative;
}

/* Optional: Dark Overlay on the Image */
.anchor-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Add slight darkness for text readability */
}
/* बाकी CSS समान रहेगा */

@keyframes pulseBorder {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.anchor-text {
    font-size: 0.9em;
    color: #109030;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 5px #109030;
}


/* --- COLUMN 2: FAQ CONTENT --- */
.faq-content-wrapper {
    max-width: 700px; /* Limit content width for better readability */
    width: 100%;
}

/* Section Title - Left Aligned */
#faq .section-title { 
    grid-column: span 1; /* Only spans its own column */
    font-size: 2.5em; /* Reduced size to fit better */
    text-align: left;
    margin-bottom: 40px;
    color: #4CAF50;
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5), 0 0 15px rgba(76, 175, 80, 0.3);
    border-bottom: 3px solid #2e353e;
    padding-bottom: 10px;
}

/* --- FAQ Item Styling (Updated for single column, better glow) --- */
.faq-item {
    background: #111216;
    border: 1px solid #2e353e;
    margin-bottom: 20px; /* Separator margin */
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
.faq-item:hover {
    border-color: #109030;
    box-shadow: 0 0 15px rgba(0, 255, 64, 0.4); 
    transform: translateY(-2px);
}

/* Question/Summary Styling */
.faq-item summary {
    padding: 20px;
    font-size: 1.1em;
    font-weight: 600;
    list-style: none;
    position: relative;
    color: #ffffff;
}

/* Custom expand icon styling: Now a glowing dash/plus */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5em;
    font-weight: 300;
    color: #4CAF50;
    text-shadow: 0 0 5px #4CAF50;
    transition: transform 0.3s;
}

/* When the item is open */
.faq-item[open] summary {
    background: #1a1b20;
    color: #109030;
    border-bottom: 1px solid #2e353e;
}

/* Change icon when open */
.faq-item[open] summary::after {
    content: '-';
    transform: rotate(0deg); 
    color: #ff00ff; /* Magenta when active/open */
    text-shadow: 0 0 5px #ff00ff;
}

/* Answer Content Styling */
.faq-answer {
    padding: 15px 20px 20px 20px;
    color: #a8a8a8;
    line-height: 1.6;
    font-size: 0.95em;
}


/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .faq-master-wrapper {
        grid-template-columns: 1fr; /* Single column on mobile/tablet */
        gap: 0;
    }
    
    .faq-visual-anchor {
        display: none; /* Hide the visual anchor on small screens */
    }

    .faq-content-wrapper {
        max-width: 100%;
    }

    #faq .section-title { 
        text-align: center;
        font-size: 2em;
        margin-bottom: 30px;
    }
}
/* --- Responsive Layout --- */
@media (max-width: 900px) {
    .section-container#faq {
        grid-template-columns: 1fr; 
    }
    
    #faq .section-title {
        font-size: 2em;
        text-align: center;
    }
}
/* --- NEW 4. TWO-COLUMN CREATOR SECTION (FINAL LOOK) --- */

/* Section Container (Dark Background) */
.team-section {
    padding: 80px 5%;
    background-color: #0d0d10;
    color: #fff;
    font-family: 'Consolas', monospace;
    position: relative;
    overflow: hidden;
}

/* Two-Column Layout Wrapper */
.team-layout-wrappe {
    display: grid;
    /* Adjusted ratio for better visual balance */
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px; /* Increased gap */
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- COLUMN 1: HEADER & SUBTITLE --- */
.team-header {
    text-align: left;
    padding-top: 20px;
    position: sticky;
    top: 20px; /* Stick header a bit lower */
    align-self: start; /* Ensures it sticks properly */
}

.team-title {
    font-size: 40px; /* Slightly larger */
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #fff;
    /* Intense Green Glow */
    /* text-shadow: 0 0 5px #fff, 0 0 15px #109030, 0 0 25px #109030;  */
    line-height: 1.1;
}

.team-title span {
    color: #109030; 
    font-weight: 800;
}

.team-subtitle {
    margin: 0;
    line-height: 1.6;
    color: #8899a8; 
    font-size: 1em;
    border-left: 3px solid #109030; /* Green accent line */
    padding: 5px 0 5px 15px; /* Added vertical padding */
}

/* --- COLUMN 2: CREATOR CARDS --- */
.team-creators {
    /* Slightly increased max height */
    max-height: 750px; 
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar */
.team-creators::-webkit-scrollbar { width: 8px; }
.team-creators::-webkit-scrollbar-thumb { background-color: #109030; border-radius: 4px; }
.team-creators::-webkit-scrollbar-track { background-color: #1e2129; }

/* Card Wrapper */
.team-wrappe {
    display: flex;
    flex-direction: column; 
    gap: 20px; /* Tighter spacing for a unified list */
}

/* --- Individual Card Styling (High Contrast, Bold Neon) --- */
.team-card {
    display: grid;
    grid-template-columns: 70px 1fr auto; 
    align-items: center;
    
    /* Dark Base with Strong Green Outline */
    background: #14151a; 
    border: 2px solid #109030; /* THICKER, more visible border */
    border-radius: 4px;
    padding: 18px 25px;
    width: 100%;
    transition: all 0.2s ease-out;
    position: relative;
    /* Initial subtle glow for visibility */
    box-shadow: 0 0 10px rgba(0, 255, 64, 0.2); 
}

/* Hover Effect: Stronger Glow, No movement */
.team-card:hover {
    background: #1e2129;
    /* Intense Glow */
    box-shadow: 0 0 5px #fff, 0 0 20px #109030; 
    /* We skip transform: translateY for a stable list feel */
}

/* Profile Image (Iconic Look) */
.profile-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    
    background-color: transparent; /* No background color needed */
    /* Icon/Placeholder */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300ff40"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Neon Circle Border around the Icon */
    border: 2px solid #109030; 
    border-radius: 50%;
    
    transition: border-color 0.2s;
}

/* Developer Name */
.team-card h3 {
    margin: 0;
    font-size: 1.5em; /* Bold and highly visible name */
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Role / Designation (Aligned to the right) */
.role {
    font-size: 1em;
    color: #109030; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right; 
    /* Subtle glow on the role text */
    text-shadow: 0 0 5px rgba(0, 255, 64, 0.5);
}

/* --- Responsive Layout for Mobile --- */
@media (max-width: 992px) {
    .team-layout-wrappe {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .team-header {
        position: static; 
        text-align: center;
        padding-top: 0;
    }
    
    .team-title {
        font-size: 2.5em;
    }
    
    .team-subtitle {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .team-creators {
        max-height: none; 
        overflow-y: visible;
        padding-right: 0;
    }

    .team-wrappe {
        gap: 15px;
    }
    
    .team-card h3 {
        font-size: 1.2em;
    }
}

/* --- 7. Footer: FINAL CLEAN GREEN NEON LOOK --- */
footer {
    /* padding: 60px 5%;  */
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #0d0d10; /* Matt Black base */
    margin-top: 80px;
    
    /* Strong, clean Green Neon Top Edge */
    border-top: 4px solid #109030; 
    box-shadow: 0 -9px 26px rgba(0, 255, 64, 0.4)
}

/* Optional: Subtle repeating grid background to match the Hero section */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Subtle dots/grid for texture */
    background-image: radial-gradient(#1e2129 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Ensure content is above the decoration */
.footer-content-wrapper {
    position: relative;
    z-index: 1;
}

/* Footer Heading (Copyright) - Pure Neon Text */
footer h3 {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    color: #fff;
    /* Intense White/Green Neon Text Shadow */
    text-shadow: 
        0 0 5px #fff, 
        0 0 10px #109030, 
        0 0 20px #109030;
    
    /* Ensure no old gradient styles interfere */
    background: none;
    -webkit-text-fill-color: unset;
}

/* Disclaimer Text (Highest Contrast) */
.disclaimer {
    font-size: 0.9em;
    line-height: 1.6;
    color: #a0a8b4; /* Light grey for excellent readability */
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Consolas', monospace; 
    
    /* Clean separator line */
    padding-top: 20px;
    border-top: 1px dashed #3a424a; 
}

/* Responsive adjustments (Kept simple) */
@media (max-width: 768px) {
    footer {
        padding: 40px 5%;
    }
    footer h3 {
        font-size: 1.6em;
    }
}