
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Segoe UI',sans-serif;

background:#070b14;
color:white;

overflow-x:hidden;

}

/* ======================
BACKGROUND
====================== */

.bg{

position:fixed;
inset:0;

z-index:-2;

background:
linear-gradient(
135deg,
#050816,
#0b1020,
#101827
);

overflow:hidden;

}

.orb{

position:absolute;

border-radius:50%;

filter:blur(80px);

opacity:.35;

animation:float 18s infinite alternate;

}

.orb:nth-child(1){

width:350px;
height:350px;

background:#00e5ff;

top:-120px;
left:-80px;

}

.orb:nth-child(2){

width:300px;
height:300px;

background:#00ff88;

bottom:-120px;
right:-80px;

}

.orb:nth-child(3){

width:250px;
height:250px;

background:#ff3b5c;

top:40%;
left:50%;

transform:translateX(-50%);

}

@keyframes float{

from{
transform:translateY(0px);
}

to{
transform:translateY(60px);
}

}

/* ======================
HEADER
====================== */

header{

height:80px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 40px;

background:rgba(15,20,35,.65);

backdrop-filter:blur(20px);

border-bottom:1px solid rgba(255,255,255,.08);

position:sticky;
top:0;

z-index:999;

}

.logo{

font-size:28px;
font-weight:800;

letter-spacing:2px;

color:#00e5ff;

text-shadow:
0 0 15px #00e5ff;

}

.admin-btn{

width:50px;
height:50px;

border:none;

border-radius:14px;

background:#111827;

color:white;

font-size:22px;

cursor:pointer;

transition:.3s;

}

.admin-btn:hover{

transform:translateY(-3px);

box-shadow:
0 0 25px #00e5ff;

}

/* ======================
HERO
====================== */

.hero{

padding:120px 20px;

text-align:center;

}

.hero h1{

font-size:72px;

font-weight:900;

margin-bottom:20px;

text-shadow:
0 0 25px rgba(0,229,255,.5);

}

.hero p{

font-size:22px;

color:#cbd5e1;

margin-bottom:40px;

}

.hero-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.hero-buttons button,
.hero-buttons a{

padding:15px 30px;

border:none;

border-radius:14px;

font-size:16px;

font-weight:700;

cursor:pointer;

text-decoration:none;

transition:.3s;

}

.hero-buttons button{

background:#00e5ff;
color:black;

}

.hero-buttons a{

background:#5865f2;
color:white;

}

.hero-buttons button:hover,
.hero-buttons a:hover{

transform:translateY(-4px);

}

/* ======================
SECTIONS
====================== */

section{

padding:70px 30px;

}

section h2{

text-align:center;

font-size:34px;

margin-bottom:40px;

}

/* ======================
STATUS
====================== */

.status-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.status-card{

background:rgba(17,24,39,.7);

backdrop-filter:blur(15px);

border:1px solid rgba(255,255,255,.08);

padding:30px;

border-radius:22px;

text-align:center;

transition:.3s;

}

.status-card:hover{

transform:translateY(-6px);

}

.icon{

font-size:48px;

margin-bottom:15px;

}

.online{

color:#00ff88;

margin:15px 0;

font-weight:bold;

}

.count{

font-size:18px;

color:#cbd5e1;

}

/* ======================
CONNECT
====================== */

.connect-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:25px;

}

.connect-card{

background:rgba(17,24,39,.7);

padding:25px;

border-radius:20px;

text-align:center;

backdrop-filter:blur(15px);

}

.ip{

margin:20px 0;

font-size:22px;

font-weight:bold;

color:#00e5ff;

}

.connect-card button{

padding:12px 25px;

border:none;

border-radius:12px;

background:#00ff88;

font-weight:bold;

cursor:pointer;

}

/* ======================
FEATURES
====================== */

.feature-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.feature-card{

background:rgba(17,24,39,.7);

padding:30px;

border-radius:20px;

text-align:center;

font-size:40px;

backdrop-filter:blur(15px);

transition:.3s;

}

.feature-card:hover{

transform:translateY(-5px);

}

.feature-card h3{

font-size:22px;

margin:15px 0;

}

.feature-card p{

font-size:15px;

color:#cbd5e1;

}

/* ======================
STATS
====================== */

.stats{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.stat-box{

background:rgba(17,24,39,.7);

padding:35px;

border-radius:20px;

text-align:center;

}

.stat-box h2{

font-size:50px;

color:#00e5ff;

margin-bottom:10px;

}

/* ======================
DISCORD
====================== */

.discord{

text-align:center;

}

.discord p{

margin-bottom:25px;

color:#cbd5e1;

}

.discord a{

display:inline-block;

padding:14px 30px;

border-radius:14px;

background:#5865f2;

color:white;

text-decoration:none;

font-weight:bold;

}

/* ======================
FOOTER
====================== */

footer{

padding:35px;

text-align:center;

border-top:1px solid rgba(255,255,255,.08);

background:rgba(15,20,35,.6);

backdrop-filter:blur(15px);

}

.footer-links{

margin-top:15px;

display:flex;
justify-content:center;
gap:25px;

}

.footer-links a{

color:#cbd5e1;

text-decoration:none;

}

/* ======================
MOBILE
====================== */

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

header{

padding:0 20px;

}


}
body{
cursor:none;
}

.cursor{

position:fixed;

width:8px;
height:8px;

background:#00ffff;

border-radius:50%;

pointer-events:none;

z-index:99999;

transform:translate(-50%,-50%);

box-shadow:
0 0 15px #00ffff,
0 0 30px #00ffff;

}

.cursor-trail{

position:fixed;

width:29px;
height:29px;

border:2px solid #00ffff;

border-radius:50%;

pointer-events:none;

z-index:99998;

transform:translate(-50%,-50%);

}
button,
a,
input,
textarea,
select,
.card,
.login-btn,
.home-btn,
.logout-btn{

cursor:none !important;

}
/* ======================
   GLASS SCROLLBAR
====================== */

/* Chrome, Edge, Opera */
::-webkit-scrollbar{
    width:18px;
}

::-webkit-scrollbar-track{
    background:rgba(255,255,255,.04);
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    box-shadow:
        0 0 20px rgba(0,229,255,.45),
        0 0 45px rgba(0,229,255,.18),
        inset 0 0 15px rgba(255,255,255,.22);
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        180deg,
        rgba(0,229,255,.55),
        rgba(0,255,136,.45)
    );

    border-radius:30px;

    border:3px solid rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

    box-shadow:
        0 0 18px rgba(0,229,255,.30),
        inset 0 0 12px rgba(255,255,255,.18);

    transition:
        background .35s ease,
        box-shadow .35s ease,
        transform .25s ease;
}

::-webkit-scrollbar-thumb:hover{

    background:linear-gradient(
        180deg,
        rgba(0,255,255,.75),
        rgba(0,255,170,.65)
    );

    box-shadow:
        0 0 25px rgba(0,229,255,.55),
        0 0 45px rgba(0,255,170,.25),
        inset 0 0 15px rgba(255,255,255,.25);
}

::-webkit-scrollbar-thumb:active{

    background:linear-gradient(
        180deg,
        #00ffff,
        #00ff88
    );

}

::-webkit-scrollbar-corner{
    background:transparent;
}

/* Firefox */
*{
    scrollbar-width:auto;
    scrollbar-color:#00d9ff #0b1020;
}
/* ======================
   MOBILE FRIENDLY
====================== */

@media (max-width:768px){

    header{
        height:auto;
        padding:15px;
        gap:15px;
    }

    .logo{
        font-size:22px;
    }

    .admin-btn{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .hero{
        padding:70px 20px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.2;
    }

    .hero p{
        font-size:17px;
        line-height:1.6;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
    }

    .hero-buttons button,
    .hero-buttons a{
        width:100%;
        max-width:350px;
    }

    section{
        padding:50px 20px;
    }

    section h2{
        font-size:28px;
        margin-bottom:25px;
    }

    .status-grid,
    .connect-grid,
    .feature-grid,
    .stats{
        grid-template-columns:1fr;
        gap:18px;
    }

    .status-card,
    .connect-card,
    .feature-card,
    .stat-box{
        padding:22px;
    }

    .stat-box h2{
        font-size:40px;
    }

    .ip{
        font-size:18px;
        word-break:break-all;
    }

    .connect-card button{
        width:100%;
    }

    .discord a{
        width:100%;
        max-width:350px;
    }

    .footer-links{
        flex-direction:column;
        gap:12px;
    }

    /* در موبایل کرسر سفارشی غیرفعال شود */
    body{
        cursor:auto;
    }

    .cursor,
    .cursor-trail{
        display:none;
    }

    button,
    a,
    input,
    textarea,
    select,
    .card,
    .login-btn,
    .home-btn,
    .logout-btn{
        cursor:pointer !important;
    }

}