/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Archivo',sans-serif;
}

:root{
    --bg:#050505;
    --bg2:#0b0b0b;
    --card:#101010;
    --card-hover:#181818;
    --border:rgba(255,255,255,.08);
    --white:#ffffff;
    --gray:#b3b3b3;
    --gray2:#7d7d7d;
}

html{
    width:100%;
    min-height:100%;
    overflow-x:hidden;
    overflow-y:auto;
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
    overflow-y:auto;
    zoom:75%;
    padding-top: 80px;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar{
    width: 0;
    height: 0;
    display: none;
}

/* =========================
   BACKGROUND
========================= */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,#1a1a1a 0%,transparent 40%),
    radial-gradient(circle at bottom right,#151515 0%,transparent 45%);
    opacity:.35;
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background:
    linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.015) 1px,transparent 1px);
    background-size:40px 40px;
    z-index:-1;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position: fixed; /* mas reliable kaysa sticky */
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: rgba(5,5,5,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 99999;
}

.logo{
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.navbar ul{
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.navbar ul li{
    list-style: none;
}

.navbar a{
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color .3s ease;
}

.navbar a:hover{
    color: #fff;
}

/* =========================
   HERO
========================= */

.hero{
    max-width:1200px;
    margin:auto;
    padding:120px 20px 70px;
    text-align:center;
}

.badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:999px;
    background:#111;
    border:1px solid var(--border);
    margin-bottom:25px;
}

.hero h1{
    font-size:68px;
    font-weight:800;
    margin-bottom:20px;
}

.hero p{
    color:var(--gray);
    max-width:720px;
    margin:auto;
    line-height:1.8;
}

/* =========================
   MEMBERS GRID
========================= */

.members-grid{
    max-width:2000px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

/* =========================
   CARD
========================= */

.member-card{
    background:#101010;
    border:1px solid rgb(0, 0, 0);
    border-radius:24px;
    height:560px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.member-card:hover{
    transform:translateY(-8px);
    background:var(--card-hover);
    border-color:rgba(255,255,255,.18);
    box-shadow:0 20px 60px rgba(0,0,0,.55);
}

.cover{
    width:100%;
    height:220px;
    overflow:hidden;
    position:relative;
}

.banner{
    width:100%;
    height:80%;
    object-fit:cover;
    object-position:center;
    transition:.4s ease;
    filter:brightness(.7);
}

.member-card:hover .banner{
    transform:scale(1.05);
    filter:brightness(.85);
}

.avatar-wrapper{
    position:relative;
    width:120px;
    height:120px;
    margin:-70px auto 0;
    z-index:5;
}

.avatar{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    display:block;
    border:3px solid #000000;
}

.decoration{
    position:absolute;
    top:50%;
    left:50%;
    width:120%;
    height:120%;
    transform:translate(-50%, -50%);
    object-fit:contain;
    pointer-events:none;
    z-index:2;
}

.status{
    position:absolute;
    width:20px;
    height:20px;
    border-radius:50%;
    border:3px solid #111111;
    bottom:6px;
    right:6px;
    z-index:3;
}

.content{
    padding:28px;
    text-align:center;
}

.display-name{
    font-size:26px;
    font-weight:700;
}

.username{
    display:block;
    margin-top:6px;
    color:var(--gray2);
}

.activity,
.spotify{
    margin-top:16px;
    padding:14px;
    border-radius:15px;
    border:1px solid var(--border);
    background:#0d0d0d;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:var(--gray);
}

.activity i,
.spotify i{
    color:white;
}

.profileBtn{
    margin-top:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:16px;
    border-radius:15px;
    background:white;
    color:black;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.profileBtn:hover{
    background:#d9d9d9;
}

/* =========================
   FOOTER
========================= */

footer{
    margin-top:120px;
    padding:60px 20px;
    text-align:center;
    border-top:1px solid var(--border);
}

footer h3{
    font-size:30px;
}

footer p{
    color:var(--gray);
    margin-top:10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.navbar{
    padding:0 20px;
}

.navbar ul{
    gap:20px;
}

.members-grid{
    grid-template-columns:1fr;
}

}

.status-emoji{
    width:1em;
    height:1em;
    vertical-align:-0.15em;
    margin-right:4px;
    object-fit:contain;
}

.home{
    min-height:130vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    background:
    linear-gradient(
    rgba(5,8,22,.75),
    rgba(5,8,22,.75)
    ),
    url('https://file.garden/aNEcO3_s6RZnr5Aa/4man.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed; 
}

.logo{
    width:500px;
    height:500px;
    object-fit:contain;
    margin-bottom:20px;
    user-select:none;
    pointer-events:none;
}

.home h1{
    font-family:'Archivo',sans-serif;
    font-size:1.80rem;
    font-weight:1000;
    letter-spacing:8px;
    color:#fff;
    margin-bottom:10px;
}

.home p{
    font-family:'Archivo',sans-serif;
    font-size:1.20rem;
    color:#9f9f9f;
    line-height:1.8;
    max-width:1000px;
}

@media (max-width:768px){

    .logo{
        width:90px;
        height:90px;
    }

    .home h1{
        font-size:2.7rem;
        letter-spacing:5px;
    }

    .home p{
        font-size:1rem;
    }

}

.music-control{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:9999;
}

.music-control button{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-family:'Archivo',sans-serif;
    font-size:14px;
    cursor:pointer;
    backdrop-filter:blur(15px);
    transition:.3s;
}

.music-control button:hover{
    background:#fff;
    color:#000;
    transform:translateY(-2px);
}

.highlights{
    width:min(1100px,90%);
    margin:70px auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.highlight{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:28px 35px;
    border-bottom:1px solid rgba(255,255,255,.08);
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.highlight:hover{
    background:#111;
    padding-left:50px;
}

.highlight span{
    color:#777;
    font-size:15px;
    width:70px;
}

.highlight h2{
    flex:1;
    font-size:28px;
    font-weight:700;
}

.highlight::after{
    content:"↗";
    font-size:24px;
}