    /* Reset */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Orbitron', sans-serif;
    }

    body {
        background: url('images/b4.png') no-repeat center center/cover;
        min-height: 100vh;
        color: #00fff0;
    }

    /* Navbar */

    nav {
        display: flex;
        justify-content: center;
        gap: 30px;
        background: rgba(0, 0, 30, 0.8);
        padding: 15px;
        box-shadow: 0 0 20px #00fff0;
    }

    nav a {
        text-decoration: none;
        color: #00fff0;
        font-weight: bold;
        position: relative;
        transition: 0.3s;
    }

    nav a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: #00fff0;
        left: 0;
        bottom: -5px;
        transition: 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

    nav a.active {
        color: #fff;
    }

    /* Section Box */

    .section-box {
        display: block;
        background: rgba(0, 0, 50, 0.6);
        border: 2px solid #00bfff;
        border-radius: 20px;
        padding: 25px 40px;
        margin: 30px auto;
        text-align: center;
        box-shadow: 0 0 20px #00bfff, 0 0 40px #00ffff;
        max-width: 700px;
        animation: neonPulse 2s infinite alternate;
    }

    .section-box h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        text-shadow: 0 0 10px #00bfff, 0 0 20px #00ffff;
    }

    /* Member Boxes - Top Row */

    .member-groups.top-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* Member Boxes - Bottom Row */

    .member-groups.bottom-row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 20px;
        overflow-x: auto;
        padding: 10px 0;
    }

    .member-groups.bottom-row::-webkit-scrollbar {
        height: 8px;
    }

    .member-groups.bottom-row::-webkit-scrollbar-thumb {
        background-color: #00bfff;
        border-radius: 4px;
    }

    .member-groups.bottom-row::-webkit-scrollbar-track {
        background: rgba(0, 0, 50, 0.2);
    }

    .member-box {
        background: rgba(0, 0, 50, 0.6);
        border: 2px solid #00bfff;
        border-radius: 20px;
        padding: 20px;
        width: 180px;
        text-align: center;
        box-shadow: 0 0 20px #00bfff, 0 0 40px #00ffff;
        animation: neonPulse 2s infinite alternate;
    }

    .member-box h3 {
        margin-bottom: 10px;
        font-size: 1.3rem;
        color: #00bfff;
        text-shadow: 0 0 5px #00bfff, 0 0 10px #00ffff;
    }

    .member-box img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-bottom: 10px;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .member-box:hover img {
        transform: scale(1.1);
        box-shadow: 0 0 20px #00bfff, 0 0 40px #00ffff;
    }

    /* FadeIn */

    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }

    .fade-in.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Neon Pulse Animation */

    @keyframes neonPulse {
        from {
            text-shadow: 0 0 10px #00bfff, 0 0 20px #00ffff;
        }
        to {
            text-shadow: 0 0 20px #00ffff, 0 0 40px #00bfff;
        }
    }