*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050510;
    color:white;
    overflow-x:hidden;
}


/* =========================
   BACKGROUND
========================= */

body::before{
    content:"";
    position:fixed;
    inset:0;

    background:
    radial-gradient(circle at 20% 20%,rgba(140,0,255,.35),transparent 40%),
    radial-gradient(circle at 80% 30%,rgba(0,180,255,.25),transparent 40%),
    radial-gradient(circle at 50% 80%,rgba(255,0,255,.15),transparent 35%);

    animation:bgMove 12s ease-in-out infinite alternate;

    z-index:-10;
}

@keyframes bgMove{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.2) translateY(-40px);
    }

}


/* =========================
   PARTICLES
========================= */

#particles{
    position:fixed;
    inset:0;
    z-index:-5;
    pointer-events:none;
}


/* =========================
   NAVBAR
========================= */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:18px 7%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(8,8,18,.45);

    backdrop-filter:blur(25px);

    border-bottom:1px solid rgba(155,92,255,.18);

    box-shadow:
    0 0 30px rgba(155,92,255,.15);

    z-index:1000;

    transition:.4s;
}


/* =========================
   LOGO
========================= */

.logo3d{

    display:flex;

    align-items:center;

    gap:6px;

    font-family:'Orbitron',sans-serif;

    font-size:32px;

    font-weight:900;

    letter-spacing:3px;

}

.logo3d span{

    color:white;

    text-shadow:
    0 0 10px #9b5cff,
    0 0 25px #9b5cff,
    0 0 50px #9b5cff;

    transition:.4s;

}

.logo3d span:hover{

    color:#bb88ff;

    transform:
    translateY(-7px)
    scale(1.12);

}

.logo3d .space{
    width:15px;
}


/* =========================
   NAV
========================= */

nav{

    display:flex;
    gap:25px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:600;

    padding:10px 16px;

    border-radius:10px;

    transition:.35s;

}

nav a:hover{

    color:#bb8cff;

    background:rgba(155,92,255,.12);

    box-shadow:
    0 0 15px rgba(155,92,255,.35);

}

.menu{

    display:none;

    font-size:30px;

    cursor:pointer;

}


/* =========================
   HERO
========================= */

.hall-hero{

    min-height:75vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    padding:150px 20px 100px;

}

.hero-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
        circle,
        rgba(155,92,255,.30),
        transparent 70%
    );

    filter:blur(50px);

    animation:heroPulse 6s ease-in-out infinite;

    z-index:-2;

}

@keyframes heroPulse{

    0%,100%{
        transform:scale(.8);
        opacity:.5;
    }

    50%{
        transform:scale(1.15);
        opacity:1;
    }

}

.hero-grid{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:60px 60px;

    mask-image:
    linear-gradient(to bottom,black,transparent);

    opacity:.25;

    pointer-events:none;

}

.hero-content{

    animation:heroAppear 1.3s ease;

}

@keyframes heroAppear{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.eyebrow{

    color:#9d7cff;

    letter-spacing:5px;

    font-size:14px;

    margin-bottom:25px;

}

.hero-content h1{

    font-family:'Orbitron',sans-serif;

    font-size:90px;

    font-weight:900;

    letter-spacing:5px;

    text-shadow:
    0 0 15px #9b5cff,
    0 0 40px #9b5cff,
    0 0 90px #9b5cff;

    animation:titleFloat 4s ease-in-out infinite;

}

.hero-content h1 span{

    color:#9b5cff;

}

@keyframes titleFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}

.hero-content > p:last-child{

    max-width:700px;

    margin:30px auto 0;

    color:#cfcfcf;

    line-height:1.8;

    font-size:17px;

}


/* =========================
   SECTIONS
========================= */

.hall-section{

    padding:90px 8%;

    position:relative;

}

.section-title{

    text-align:center;

    font-size:46px;

    font-weight:800;

    margin-bottom:65px;

    letter-spacing:2px;

}

.section-title span{

    color:#9b5cff;

    text-shadow:
    0 0 15px #9b5cff,
    0 0 35px #9b5cff;

}


/* =========================
   CARD GRID
========================= */

.cards{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

}

.manager-cards{

    grid-template-columns:
    repeat(2,minmax(280px,420px));

    justify-content:center;

}


/* =========================
   STAFF CARD
========================= */

.staff-card{

    position:relative;

    overflow:hidden;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.09);

    border-radius:25px;

    backdrop-filter:blur(20px);

    box-shadow:
    0 10px 40px rgba(0,0,0,.35),
    0 0 30px rgba(155,92,255,.12);

    transition:.45s;

    opacity:0;

    transform:translateY(50px);

}

.staff-card.visible{

    opacity:1;

    transform:translateY(0);

}

.staff-card:hover{

    transform:
    translateY(-15px)
    scale(1.02);

    border-color:#9b5cff;

    box-shadow:
    0 15px 50px rgba(0,0,0,.45),
    0 0 35px rgba(155,92,255,.45),
    0 0 80px rgba(155,92,255,.18);

}


/* =========================
   CARD IMAGE
========================= */

.card-image{

    position:relative;

    width:100%;

    height:300px;

    overflow:hidden;

    background:
    radial-gradient(
        circle at center,
        rgba(155,92,255,.25),
        rgba(10,10,20,.8)
    );

}

.card-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.staff-card:hover .card-image img{

    transform:scale(1.08);

}

.image-glow{

    position:absolute;

    inset:auto 0 0 0;

    height:100px;

    background:
    linear-gradient(
        to top,
        rgba(5,5,16,.95),
        transparent
    );

    pointer-events:none;

}


/* =========================
   CARD CONTENT
========================= */

.card-content{

    padding:28px;

    text-align:center;

}

.rank{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#a878ff;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.card-content h3{

    font-size:28px;

    margin-bottom:12px;

}

.card-content p{

    color:#c7c7c7;

    font-size:14px;

    line-height:1.8;

}


/* =========================
   CARD SHINE
========================= */

.staff-card::after{

    content:"";

    position:absolute;

    top:0;
    left:-130%;

    width:50%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.16),
        transparent
    );

    transform:skewX(-25deg);

    transition:1s;

    pointer-events:none;

}

.staff-card:hover::after{

    left:160%;

}


/* =========================
   FOOTER
========================= */

footer{

    padding:70px 8%;

    text-align:center;

    background:#080811;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h2{

    font-size:40px;

    margin-bottom:15px;

}

footer h2 span{

    color:#9b5cff;

    text-shadow:
    0 0 15px #9b5cff,
    0 0 40px #9b5cff;

}

footer p{

    color:#bdbdbd;

    margin-top:10px;

}

.social{

    margin:30px 0;

    display:flex;

    justify-content:center;

    gap:25px;

}

.social i{

    font-size:27px;

    width:60px;
    height:60px;

    line-height:60px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    transition:.4s;

    cursor:pointer;

}

.social i:hover{

    background:#8d4dff;

    transform:
    translateY(-8px)
    rotate(360deg);

    box-shadow:
    0 0 25px #8d4dff;

}

.copy{

    margin-top:30px;

    font-size:14px;

    opacity:.7;

}


/* =========================
   CURSOR
========================= */

body{

    cursor:none;

}

.cursor{

    position:fixed;

    width:16px;
    height:16px;

    border-radius:50%;

    background:#9b5cff;

    pointer-events:none;

    z-index:99999;

    box-shadow:
    0 0 15px #9b5cff,
    0 0 35px #9b5cff;

}

.cursor-blur{

    position:fixed;

    width:220px;
    height:220px;

    border-radius:50%;

    background:rgba(155,92,255,.18);

    filter:blur(45px);

    pointer-events:none;

    z-index:99998;

}


/* =========================
   LOADER
========================= */

#loader{

    position:fixed;

    inset:0;

    background:#050510;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.loader-logo h1{

    font-size:70px;

    letter-spacing:5px;

    text-shadow:
    0 0 20px #9b5cff,
    0 0 40px #9b5cff,
    0 0 80px #9b5cff;

    animation:pulseLogo 2s infinite;

}

.loader-logo span{

    color:#9b5cff;

}

.loader-bar{

    width:320px;

    height:8px;

    background:#222;

    border-radius:20px;

    overflow:hidden;

    margin-top:40px;

}

.loader-fill{

    height:100%;

    width:0;

    background:
    linear-gradient(
        90deg,
        #9b5cff,
        #00d4ff
    );

    animation:load 3s forwards;

}

#loader p{

    margin-top:20px;

    color:#ccc;

    letter-spacing:3px;

}

@keyframes load{

    from{
        width:0;
    }

    to{
        width:100%;
    }

}

@keyframes pulseLogo{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#09090f;

}

::-webkit-scrollbar-thumb{

    background:#8d4dff;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b46cff;

}


/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    nav{

        position:absolute;

        top:80px;
        right:20px;

        display:flex;

        flex-direction:column;

        background:rgba(10,10,20,.95);

        padding:20px;

        border-radius:15px;

        opacity:0;

        visibility:hidden;

        transform:translateY(-20px);

        transition:.4s;

    }

    nav.active{

        opacity:1;

        visibility:visible;

        transform:translateY(0);

    }

    .menu{

        display:block;

    }

    .cards{

        grid-template-columns:
        repeat(2,1fr);

    }

    .manager-cards{

        grid-template-columns:
        repeat(2,1fr);

    }

    .hero-content h1{

        font-size:65px;

    }

}


@media(max-width:600px){

    .logo3d{

        font-size:25px;

    }

    .hall-hero{

        min-height:65vh;

    }

    .hero-content h1{

        font-size:43px;

        letter-spacing:2px;

    }

    .eyebrow{

        font-size:10px;

        letter-spacing:3px;

    }

    .hero-content > p:last-child{

        font-size:14px;

    }

    .hall-section{

        padding:70px 20px;

    }

    .section-title{

        font-size:30px;

        margin-bottom:45px;

    }

    .cards,
    .manager-cards{

        grid-template-columns:1fr;

    }

    .card-image{

        height:280px;

    }

    footer h2{

        font-size:32px;

    }

    body{

        cursor:auto;

    }

    .cursor,
    .cursor-blur{

        display:none;

    }

}

/* ==========================
   SOCIAL BUTTONS
========================== */

.social-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.social-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    backdrop-filter:blur(15px);
    transition:.35s;
}

.social-btn i{
    font-size:22px;
}

.social-btn:hover{
    transform:translateY(-6px) scale(1.05);
    box-shadow:0 0 25px #9b5cff;
}

.youtube:hover{
    background:#ff0000;
}

.discord-btn:hover{
    background:#5865F2;
}

.instagram:hover{
    background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

@media(max-width:600px){
    .social-buttons{
        flex-direction:column;
    }

    .social-btn{
        width:100%;
        justify-content:center;
    }
}