*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Vazirmatn',sans-serif;
    min-height:100vh;
    overflow-x:hidden;
    background:#040816;
    color:white;
}

/* BACKGROUND */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top right,#f9731655 0%,transparent 25%),
    radial-gradient(circle at bottom left,#f59e0b55 0%,transparent 30%),
    radial-gradient(circle at center,#fb718522 0%,transparent 35%),
    linear-gradient(135deg,#050505,#0b0b0b,#120a05);
    z-index:-3;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size:60px 60px;
    mask-image:linear-gradient(to bottom,transparent,black);
    z-index:-2;
}

/* FLOATING LIGHTS */

.blur{
    position:fixed;
    border-radius:50%;
    filter:blur(90px);
    z-index:-1;
    opacity:.55;
    animation:float 8s ease-in-out infinite;
}

.blur1{
    width:320px;
    height:320px;
    background:#6d3209;
    top:-60px;
    right:-40px;
}

.blur2{
    width:350px;
    height:350px;
    background:#654105;
    bottom:-80px;
    left:-60px;
    animation-delay:2s;
}

.blur3{
    width:250px;
    height:250px;
    background:#fb7185;
    top:40%;
    left:40%;
    opacity:.25;
}

@keyframes float{
    0%,100%{ transform:translateY(0px); }
    50%{ transform:translateY(-30px); }
}

/* MAIN */

.wrapper{
    width:min(1350px,92%);
    margin:auto;
    padding:35px 0 80px;
}

/* TOPBAR */

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 24px;
    border-radius:28px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(22px);
    box-shadow: inset 0 0 25px rgba(255,255,255,.03);
    margin-bottom:60px;
}

.logo{
    font-size:30px;
    font-weight:900;
    letter-spacing:1px;
}

.logo span{
    background:linear-gradient(90deg,#f97316,#f59e0b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav{
    display:flex;
    gap:35px;
}

.nav a{
    color:#bababa;
    text-decoration:none;
    transition:.3s;
}

.nav a:hover{
    color:white;
}

.start-game{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:16px;
    background:#ffffff;
    color:#000;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
    border:1px solid rgba(0,0,0,.08);
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.start-game:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.start-game .material-symbols-outlined{
    font-size:20px;
}

/* HERO */

.hero{
    text-align:center;
    margin-bottom:55px;
}

.hero h1{
    font-size:82px;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:900;
}

.hero h1 span{
    background:linear-gradient(90deg,#f97316,#fb7185,#f59e0b);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    max-width:760px;
    margin:auto;
    color:#d5d5d5;
    line-height:2.1;
    font-size:17px;
}

/* STATUS PANEL */

.status-panel{
    position:relative;
    padding:35px;
    border-radius:38px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(30px);
    overflow:hidden;
    box-shadow: inset 0 0 30px rgba(255,255,255,.03);
}

.status-panel::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(130deg,transparent,rgba(255,255,255,.06),transparent);
    transform:translateX(-100%);
    transition:1s;
}

.status-panel:hover::before{
    transform:translateX(100%);
}

.panel-title{
    font-size:28px;
    margin-bottom:30px;
    font-weight:800;
}

/* SERVICE LIST */

.service-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.service-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
    transition:.3s;
}

.service-item:hover{
    transform:translateX(-6px);
    background:rgba(255,255,255,.07);
}

.service-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.service-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#f97316,#f59e0b);
    box-shadow:0 0 25px rgba(249,115,22,.25);
}

.service-icon .material-symbols-outlined{
    font-size:34px;
    color:white;
}

.service-text h3{
    font-size:20px;
    margin-bottom:5px;
}

.service-text p{
    color:#d7d7d7;
    font-size:14px;
}

/* STATUS BADGES */

.status{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:16px;
    font-size:14px;
    font-weight:700;
}

.status.online{
    background:rgba(34,197,94,.12);
    color:#4ade80;
    border:1px solid rgba(74,222,128,.25);
}

.status.offline{
    background:rgba(239,68,68,.12);
    color:#f87171;
    border:1px solid rgba(248,113,113,.25);
}

.status-dot{
    width:10px;
    height:10px;
    border-radius:50%;
}

.online .status-dot{
    background:#4ade80;
    box-shadow:0 0 15px #4ade80;
}

.offline .status-dot{
    background:#f87171;
    box-shadow:0 0 15px #f87171;
}

/* FOOTER */

.footer{
    text-align:center;
    margin-top:70px;
    color:#ddd;
}

/* MOBILE */

@media(max-width:900px){

    .hero h1{
        font-size:58px;
    }

}

@media(max-width:760px){

    .topbar{
        flex-direction:column;
        gap:20px;
    }

    .nav{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
        width:100%;
    }

    .nav a{
        width:100%;
        text-align:center;
        padding:12px;
        border-radius:12px;
        background:rgba(255,255,255,.05);
    }

    .start-game{
        width:100%;
    }

    .hero h1{
        font-size:44px;
    }

    .service-item{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .status{
        width:100%;
        justify-content:center;
    }

}