:root{
    --bg:#070b11;
    --card:#111927;
    --card2:#182233;
    --border:rgba(255,255,255,.08);
    --text:#ffffff;
    --text2:#9ca8ba;
    --gold:#ffcc70;
    --green:#39E055;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* BACKGROUND */

.bg-effects{
    position:fixed;
    inset:0;
    z-index:-1;
    overflow:hidden;
}

.bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.18;
}

.bg1{
    width:500px;
    height:500px;
    background:#ffcc70;
    top:-150px;
    left:-150px;
}

.bg2{
    width:450px;
    height:450px;
    background:#3b82f6;
    bottom:-150px;
    right:-150px;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    position:relative;
}

.container{
    width:100%;
    max-width:1200px;
}

/* HEADER */

.header{
    text-align:center;
    margin-bottom:60px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,204,112,.12);
    border:1px solid rgba(255,204,112,.2);
    color:var(--gold);
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:25px;
}

.badge::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 12px var(--green);
}

.header h1{
    font-size:clamp(38px,6vw,74px);
    line-height:1;
    font-weight:900;
    margin-bottom:20px;
}

.header p{
    max-width:750px;
    margin:auto;
    color:var(--text2);
    line-height:1.8;
    font-size:16px;
}

/* CARD */

.card-wrapper{
    display:flex;
    justify-content:center;
}

.server-card{
    position:relative;
    width:100%;
    max-width:520px;
    background:linear-gradient(
        180deg,
        rgba(24,34,51,.95),
        rgba(17,25,39,.95)
    );
    border:1px solid var(--border);
    border-radius:32px;
    padding:40px;
    backdrop-filter:blur(20px);
    overflow:hidden;
    box-shadow:0 10px 50px rgba(0,0,0,.45);
    transition:.4s ease;
}

.server-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,204,112,.3);
}

.server-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:30px;
}

.server-name h2{
    font-size:42px;
    font-weight:900;
    margin-bottom:10px;
}

.server-name span{
    color:var(--text2);
    font-size:15px;
}

.server-tag{
    background:var(--gold);
    color:#000;
    font-size:12px;
    font-weight:800;
    padding:10px 14px;
    border-radius:14px;
}

/* FEATURES */

.features{
    list-style:none;
    margin-bottom:35px;
}

.features li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:#e8edf5;
    font-size:15px;
}

.features li::before{
    content:"✓";
    width:22px;
    height:22px;
    min-width:22px;
    border-radius:50%;
    background:rgba(57,224,85,.12);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:800;
}

/* STATUS */

.status{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:35px;
}

.status-left{
    font-size:14px;
    font-weight:700;
    color:var(--text2);
}

.status-right{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--green);
    font-size:15px;
    font-weight:800;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(57,224,85,.08);
    border:1px solid rgba(57,224,85,.18);
    overflow:hidden;
    animation:onlineGlow 2s infinite ease-in-out;
}

.status-right::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );
    transform:translateX(-100%);
    animation:shine 3s infinite;
}

.status-dot{
    position:relative;
    width:10px;
    height:10px;
    min-width:10px;
    border-radius:50%;
    background:var(--green);
    box-shadow:
    0 0 10px var(--green),
    0 0 20px var(--green),
    0 0 30px var(--green);
    animation:pulse 1.5s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.4);
        opacity:.7;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes shine{

    100%{
        transform:translateX(200%);
    }
}

@keyframes onlineGlow{

    0%{
        box-shadow:0 0 0 rgba(57,224,85,0);
    }

    50%{
        box-shadow:0 0 25px rgba(57,224,85,.12);
    }

    100%{
        box-shadow:0 0 0 rgba(57,224,85,0);
    }
}

/* BUTTON */

.play-btn{
    width:100%;
    height:62px;
    border:none;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #ffcc70,
        #ffb020
    );
    color:#000;
    font-size:15px;
    font-weight:900;
    cursor:pointer;
    transition:.3s ease;
}

.play-btn:hover{
    transform:scale(1.02);
    box-shadow:0 10px 30px rgba(255,176,32,.35);
}

/* FOOTER */

.footer{
    position:relative;
    margin-top:80px;
    border-top:1px solid rgba(255,255,255,.06);
    background:linear-gradient(
        180deg,
        rgba(17,25,39,.85),
        rgba(7,11,17,1)
    );
    backdrop-filter:blur(20px);
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    width:320px;
    height:320px;
    background:#ffcc70;
    opacity:.08;
    filter:blur(120px);
    border-radius:50%;
}

.footer-content{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:45px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:22px;
}

.footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-logo img{
    width:100%;
    max-width:180px;
    opacity:.95;
    transition:.3s ease;
}

.footer-logo img:hover{
    transform:scale(1.03);
    opacity:1;
}

.footer-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#9ca8ba;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
    text-decoration:none;
}

.footer-links a:hover{
    color:#ffcc70;
}

.footer-copy{
    text-align:center;
}

.footer-year{
    display:inline-block;
    white-space:nowrap;
    color:#ffffff;
    font-size:14px;
    font-weight:700;
}

.footer-copy p{
    color:#667085;
    font-size:13px;
    margin-top:6px;
}

.footer-dev{
    margin-top:14px;
    color:#9ca8ba !important;
    font-size:13px;
}

.footer-dev strong{
    color:#ffcc70;
    font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        padding:40px 16px;
    }

    .header{
        margin-bottom:40px;
    }

    .header p{
        font-size:14px;
    }

    .server-card{
        padding:28px;
        border-radius:24px;
    }

    .server-top{
        flex-direction:column;
        gap:20px;
    }

    .server-name h2{
        font-size:34px;
    }

    .features li{
        font-size:14px;
    }

    .play-btn{
        height:58px;
    }

    .footer{
        margin-top:60px;
    }

    .footer-content{
        padding:40px 20px;
        gap:24px;
    }

    .footer-logo img{
        max-width:140px;
    }

    .footer-links{
        gap:16px;
    }

    .footer-links a{
        font-size:13px;
    }

    .status{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }
}