@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html,body{
    width:100%;
    height:100%;
    overflow-x:hidden;
    background:#08100d;
    color:#fff;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#27d76b;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#111;
}

/* NAVBAR */

.topbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1500px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 35px;

    background:rgba(8,18,12,.55);
    backdrop-filter:blur(18px);

    border:1px solid rgba(39,215,107,.15);
    border-radius:22px;

    z-index:999;
}

.logo{
    font-size:33px;
    font-weight:900;
    color:#27d76b;
    letter-spacing:2px;
}

nav{
    display:flex;
    align-items:center;
    gap:18px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#27d76b;
}

/* LOGIN */

.login-btn{

    padding:12px 28px;

    background:linear-gradient(135deg,#27d76b,#12a850);

    color:white;

    border-radius:12px;

    box-shadow:0 0 25px rgba(39,215,107,.35);

}

.login-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 0 35px rgba(39,215,107,.55);

}

/* HERO */

.hero{

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    background-size:cover;
    background-position:center;

    position:relative;

    transition:background-image 1.5s ease;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top,#2ddf7640,transparent 60%),

    linear-gradient(rgba(6,12,8,.65),rgba(6,12,8,.88));

}

/* CENTER */

.hero-inner{

    position:relative;

    z-index:5;

    width:100%;

    max-width:1300px;

    text-align:center;

    padding:40px;

}

/* TITLE */

.hero h1{

    font-size:90px;

    font-weight:900;

    line-height:1;

    margin-top:45px;

    text-shadow:0 0 40px rgba(39,215,107,.45);

}

.hero h1 span{

    color:#27d76b;

}

.hero p{

    margin-top:30px;

    font-size:20px;

    color:#d2d2d2;

    line-height:1.8;

}

/* BUTTONS */

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    padding:18px 42px;

    background:linear-gradient(135deg,#2ae06f,#179b4c);

    border-radius:14px;

    text-decoration:none;

    color:white;

    font-weight:700;

    transition:.35s;

    box-shadow:0 0 35px rgba(39,215,107,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 0 45px rgba(39,215,107,.7);

}

.btn-secondary{

    padding:18px 42px;

    border-radius:14px;

    border:2px solid rgba(39,215,107,.3);

    background:rgba(255,255,255,.03);

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:#27d76b;

    border-color:#27d76b;

}

/* STATS */

.stats{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.stats-box{

    min-width:250px;

    padding:25px;

    border-radius:22px;

    background:rgba(14,25,18,.72);

    backdrop-filter:blur(20px);

    border:1px solid rgba(39,215,107,.15);

    transition:.35s;

}

.stats-box:hover{

    transform:translateY(-8px);

    border-color:#27d76b;

    box-shadow:0 0 40px rgba(39,215,107,.2);

}

.stats-label{

    display:block;

    color:#8b8b8b;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:15px;

}

.stats-number{

    font-size:30px;

    font-weight:800;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

}

/* STATUS */

.status-dot{

    width:13px;

    height:13px;

    border-radius:50%;

}

.online{

    background:#27d76b;

    box-shadow:0 0 15px #27d76b;

}

.offline{

    background:#ff4242;

    box-shadow:0 0 15px #ff4242;

}

/* PROFILE */

.profile-wrapper{

    position:relative;

    cursor:pointer;

}

.profile-img{

    width:48px;

    height:48px;

    border-radius:50%;

    border:2px solid #27d76b;

    transition:.3s;

}

.profile-wrapper:hover .profile-img{

    transform:rotate(8deg) scale(1.08);

}

.profile-menu{

    position:absolute;

    right:0;

    top:65px;

    width:220px;

    background:#101b14;

    border-radius:18px;

    border:1px solid rgba(39,215,107,.18);

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

}

.profile-wrapper:hover .profile-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.profile-menu a{

    display:block;

    padding:18px;

    text-decoration:none;

    color:white;

    transition:.3s;

}

.profile-menu a:hover{

    background:#228046;

}

/* RESPONSIVE */

@media(max-width:900px){

.hero h1{

font-size:60px;

}

.topbar{

flex-direction:column;

gap:20px;

}

.stats{

flex-direction:column;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

}