/* =====================================
   RESET
===================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Rajdhani',sans-serif;
    background:#04060d;
    color:#fff;
    overflow-x:hidden;
}

/* =====================================
   BACKGROUND
===================================== */

body::before{
    content:'';
    position:fixed;
    inset:0;

    background:
    linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.92)),
    url('background.jpg') center/cover no-repeat;

    z-index:-3;

    transform:scale(1.05);
    filter:saturate(1.1) contrast(1.05);
}

body::after{
    content:'';
    position:fixed;
    inset:0;

    background:
    radial-gradient(circle at left, rgba(255,0,0,.18), transparent 35%),
    radial-gradient(circle at right, rgba(0,120,255,.18), transparent 35%);

    z-index:-2;
}

/* =====================================
   NAVBAR
===================================== */

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    z-index:999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 70px;

    background:rgba(5,8,15,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

    box-shadow:0 0 40px rgba(0,0,0,.45);
}

.nav-brand{
    display:flex;
    align-items:center;
    gap:20px;
}

.nav-emblem{
    width:72px;
    height:72px;
    object-fit:contain;

    filter:
        drop-shadow(0 0 10px rgba(176,38,255,.5))
        drop-shadow(0 0 20px rgba(0,183,255,.4));

    transition:.35s ease;
}

.nav-emblem:hover{
    transform:
        rotate(6deg)
        scale(1.08);

    filter:
        drop-shadow(0 0 15px rgba(176,38,255,.8))
        drop-shadow(0 0 30px rgba(0,183,255,.6));
}

.nav-emblem{

    filter:
        drop-shadow(0 0 8px rgba(176,38,255,.55))
        drop-shadow(0 0 18px rgba(0,183,255,.35));
}

@keyframes emblemFloat{
    0%,100%{
        transform:translateY(0) rotate(0deg);
    }

    50%{
        transform:translateY(-3px) rotate(3deg);
    }
}

/* LOGO */

.logo-frame{

    width:68px;
    height:68px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(124,236,255,.15);

    backdrop-filter:blur(12px);
}

.logo{

    font-family:'Cinzel', serif;

    font-size:clamp(34px,2.5vw,58px);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:8px;

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #7cecff,
        #00b7ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
        0 0 4px rgba(0,255,255,.65),
        0 0 10px rgba(0,180,255,.55),
        0 0 22px rgba(0,140,255,.45);

    position:relative;

    cursor:default;

    transition:
        transform .35s ease,
        text-shadow .35s ease,
        filter .35s ease;
}

.logo:hover{

    transform:translateY(-2px);

    filter:brightness(1.15);

    text-shadow:
        0 0 8px rgba(124,236,255,.95),
        0 0 18px rgba(0,183,255,.85),
        0 0 35px rgba(0,183,255,.70),
        0 0 60px rgba(0,183,255,.55),
        0 0 100px rgba(0,183,255,.35);
}

.logo:hover + .nav-emblem{

    transform:
        rotate(6deg)
        scale(1.08);

    filter:
        drop-shadow(0 0 15px rgba(176,38,255,.8))
        drop-shadow(0 0 30px rgba(0,183,255,.6));
}

.logo::after{

    content:'';

    position:absolute;

    inset:0;

    filter:blur(18px);

    opacity:.45;

    z-index:-1;

    background:
    linear-gradient(
        to bottom,
        rgba(0,255,255,.25),
        rgba(0,120,255,.15)
    );
}

/* MENU */

.nav-links{
    display:flex;
    gap:42px;
}

.nav-links a{
    position:relative;

    text-decoration:none;
    color:#d9d9d9;

    text-transform:uppercase;
    font-weight:600;
    font-size:16px;

    letter-spacing:1px;

    transition:.3s;
}

.nav-links a:hover{
    color:#ff2d2d;
}

.nav-links a::after{

    content:'';

    position:absolute;
    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:#ff2d2d;

    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* DISCORD */

.discord-btn{

    padding:15px 30px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        rgba(255,0,0,.18),
        rgba(255,0,0,.05)
    );

    border:1px solid rgba(255,0,0,.35);

    color:#fff;
    text-decoration:none;

    font-weight:700;
    text-transform:uppercase;

    transition:.35s;
}

.discord-btn:hover{

    background:#ff2d2d;

    transform:translateY(-3px);

    box-shadow:
    0 0 25px rgba(255,0,0,.35);
}

/* =====================================
   HERO
===================================== */

.hero{

    width:100%;
    min-height:100vh;

    padding:
    180px
    40px
    100px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* TITLE */

.hero-title{
    text-align:center;
    margin-bottom:70px;
}

.hero-title h1{

    font-size:96px;
    line-height:1;

    text-transform:uppercase;
    font-weight:700;

    letter-spacing:2px;

    text-shadow:
    0 0 25px rgba(255,255,255,.12),
    0 0 40px rgba(255,0,0,.12);
}

.hero-title h1 span{

    background:
    linear-gradient(
        to bottom,
        #ff9c9c,
        #ff1f1f
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-title p{

    margin-top:20px;

    font-size:24px;

    color:#a4aab5;

    letter-spacing:5px;
}

/* =====================================
   SERVERS
===================================== */

.servers{

    width:100%;
    max-width:1450px;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:40px;
}

/* CARD */

.server-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    min-height:760px;

    padding:45px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    transition:.45s;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(22px);
}

/* GLASS EFFECT */

.server-card::before{

    content:'';

    position:absolute;
    inset:0;

    background:rgba(5,10,18,.55);
}

/* SHINE */

.server-card::after{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.05),
        transparent
    );

    transform:translateX(-100%);
    transition:1.3s;
}

.server-card:hover::after{
    transform:translateX(100%);
}

.server-card>*{
    position:relative;
    z-index:2;
}

/* HOVER */

.server-card:hover{

    transform:
    translateY(-12px)
    scale(1.01);
}

/* BABYRAN */

.babyran{

    background:
    linear-gradient(rgba(255,0,0,.18), rgba(0,0,0,.75)),
    url('babyran.jpg') center/cover no-repeat;

    box-shadow:
    0 0 50px rgba(255,0,0,.18),
    inset 0 0 50px rgba(255,0,0,.08);
}

/* CLASSIC */

.classic{

    background:
    linear-gradient(rgba(0,120,255,.18), rgba(0,0,0,.75)),
    url('classic.jpg') center/cover no-repeat;

    box-shadow:
    0 0 50px rgba(0,120,255,.18),
    inset 0 0 50px rgba(0,120,255,.08);
}

/* HEADER */

.server-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* BADGE */

.server-badge{

    padding:10px 24px;

    border-radius:40px;

    font-size:15px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;
}

.red{
    background:#ff2d2d;
}

.blue{
    background:#267dff;
}

/* STATUS */

.online{

    display:flex;
    align-items:center;
    gap:10px;

    color:#5eff8d;

    font-weight:700;
}

.dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#4dff77;

    box-shadow:
    0 0 10px #4dff77;
}

/* CONTENT */

.server-content h2{

    font-size:115px;

    line-height:.9;

    text-transform:uppercase;

    margin-bottom:18px;

    letter-spacing:3px;

    text-shadow:
    0 0 25px rgba(255,255,255,.12);
}

.babyran h2{
    color:#ff4343;
}

.classic h2{
    color:#d86dff;
}

.server-content p{

    font-size:26px;

    color:#d8d8d8;

    margin-bottom:35px;
}

/* =====================================
   FEATURES
===================================== */

.features{

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;
}

.feature-box{

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(10px);

    transition:.35s;
}

.feature-box:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.08);

    border-color:rgba(255,255,255,.14);

    box-shadow:
    0 0 25px rgba(255,255,255,.05);
}

.feature-box h3{

    margin-bottom:8px;

    font-size:22px;
}

.feature-box p{

    margin:0;

    font-size:15px;

    color:#aaa;
}

/* =====================================
   BUTTONS
===================================== */

.enter-btn{

    position:relative;

    overflow:hidden;

    width:100%;

    padding:22px;

    border:none;

    border-radius:18px;

    font-size:28px;
    font-weight:700;

    text-transform:uppercase;

    color:#fff;

    cursor:pointer;

    transition:.35s;

    letter-spacing:2px;
}

.enter-btn::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.2),
        transparent
    );

    transform:translateX(-100%);
}

.enter-btn:hover::before{
    animation:shine 1s ease;
}

@keyframes shine{

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

/* RED BUTTON */

.babyran .enter-btn{

    background:
    linear-gradient(
        to bottom,
        #ff4b4b,
        #c70000
    );

    box-shadow:
    0 0 35px rgba(255,0,0,.35);
}

/* BLUE BUTTON */

.classic .enter-btn{

    background:
    linear-gradient(
        to bottom,
        #4da2ff,
        #0050dc
    );

    box-shadow:
    0 0 35px rgba(0,120,255,.35);
}

.enter-btn:hover{

    transform:translateY(-4px);

    filter:brightness(1.06);
}

/* =====================================
   STATS
===================================== */

.stats{

    margin-top:28px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    padding:22px;

    border-radius:18px;

    background:rgba(0,0,0,.38);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);
}

.stat{
    text-align:center;
}

.stat h4{

    font-size:30px;
    font-weight:700;
}

.stat span{

    color:#a1a1a1;

    font-size:14px;
}

/* =====================================
   FOOTER
===================================== */

.footer{

    width:100%;

    padding:40px;

    text-align:center;

    color:#7f8895;

    background:rgba(0,0,0,.35);

    border-top:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(10px);
}

/* =====================================
   SCROLLBAR
===================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#080b12;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        to bottom,
        #ff2d2d,
        #0066ff
    );

    border-radius:20px;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:1200px){

    .servers{
        grid-template-columns:1fr;
    }

    .hero-title h1{
        font-size:80px;
    }
}

@media(max-width:768px){

    .navbar{

        flex-direction:column;

        gap:22px;

        padding:25px;
    }

    .nav-links{

        flex-wrap:wrap;
        justify-content:center;

        gap:20px;
    }

    .hero-title h1{
        font-size:52px;
    }

    .hero-title p{
        font-size:18px;
    }

    .server-card{

        min-height:auto;

        padding:30px;
    }

    .server-content h2{
        font-size:70px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .stats{
        flex-direction:column;
    }

    .enter-btn{
        font-size:22px;
    }
}


/* =====================================
   PURPLE PREMIUM THEME PATCH
===================================== */

:root{
    --primary:#b026ff;
    --primary-dark:#5d00b8;
    --primary-light:#d86dff;
    --secondary:#7d3cff;
}

/* PURPLE AMBIENT */

body::after{
    background:
    radial-gradient(circle at left, rgba(176,38,255,.20), transparent 35%),
    radial-gradient(circle at right, rgba(125,60,255,.20), transparent 35%),
    radial-gradient(circle at center, rgba(255,255,255,.03), transparent 50%);
}

/* LOGO */

.logo{

    font-family:'Cinzel', serif;

    font-size:
    clamp(34px,2.5vw,58px);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:8px;

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #7cecff,
        #00b7ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
    0 0 4px rgba(0,255,255,.65),
    0 0 10px rgba(0,180,255,.55),
    0 0 22px rgba(0,140,255,.45);

    position:relative;
}

.logo::after{

    content:'';

    position:absolute;

    inset:0;

    filter:blur(18px);

    opacity:.45;

    z-index:-1;

    background:
    linear-gradient(
        to bottom,
        rgba(0,255,255,.25),
        rgba(0,120,255,.15)
    );
}

/* LINKS */

.nav-links a:hover{
    color:#d86dff;
}

.nav-links a::after{
    background:#b026ff;
    box-shadow:0 0 10px #b026ff;
}

/* DISCORD */

.discord-btn{
    background:
    linear-gradient(
        135deg,
        rgba(176,38,255,.22),
        rgba(176,38,255,.08)
    );

    border:1px solid rgba(176,38,255,.45);
}

.discord-btn:hover{
    background:#b026ff;

    box-shadow:
    0 0 25px rgba(176,38,255,.45);
}
/* HERO TITLE */
.hero-title h1 span{

    background:
    linear-gradient(
        to bottom,
        #d8ffff,
        #7cecff,
        #00b7ff
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
        0 0 6px rgba(124,236,255,.8),
        0 0 15px rgba(0,183,255,.6),
        0 0 30px rgba(0,183,255,.4);
}
/* SERVER CARDS */
.babyran{
    background:
    linear-gradient(rgba(176,38,255,.16), rgba(0,0,0,.75)),
    url('babyran.jpg') center/cover no-repeat;

    box-shadow:
    0 0 50px rgba(176,38,255,.20),
    inset 0 0 50px rgba(176,38,255,.10);
}
.classic{
    background:
    linear-gradient(rgba(125,60,255,.16), rgba(0,0,0,.75)),
    url('classic.jpg') center/cover no-repeat;

    box-shadow:
    0 0 50px rgba(125,60,255,.20),
    inset 0 0 50px rgba(125,60,255,.10);
}
/* TITLES */
.babyran h2{
    color:#d86dff;
}
.classic h2{
    color:#9b6dff;
}
/* BADGES */

.red{
    background:
    linear-gradient(to right,#b026ff,#7d3cff);
}

.blue{
    background:
    linear-gradient(to right,#7d3cff,#4f1db5);
}

/* ONLINE */

.online{
    color:#d9a3ff;
}

.dot{
    background:#bb66ff;
    box-shadow:0 0 12px #bb66ff;
}

/* FEATURES */

.feature-box{
    background:rgba(176,38,255,.06);
    border:1px solid rgba(176,38,255,.10);
}

.feature-box:hover{
    background:rgba(176,38,255,.10);
    border-color:rgba(176,38,255,.25);

    box-shadow:
    0 0 25px rgba(176,38,255,.12);
}

/* BUTTONS */

.babyran .enter-btn{
    background:
    linear-gradient(
        to bottom,
        #d86dff,
        #7d00cc
    );

    box-shadow:
    0 0 35px rgba(176,38,255,.40);
}

.classic .enter-btn{
    background:
    linear-gradient(
        to bottom,
        #9b6dff,
        #4f1db5
    );

    box-shadow:
    0 0 35px rgba(125,60,255,.40);
}

.enter-btn:hover{
    box-shadow:
    0 0 45px rgba(176,38,255,.50);
}

/* SCROLLBAR */

::-webkit-scrollbar-thumb{
    background:
    linear-gradient(
        to bottom,
        #b026ff,
        #4f1db5
    );
}

/* FOOTER */

.footer{
    border-top:
    1px solid rgba(176,38,255,.12);
}


/* =====================================
   HAVOC STYLE SIZE PATCH
===================================== */

.hero{
    min-height:100vh;

    padding:
    140px
    2vw
    80px;

    justify-content:center;
}

.hero-title{
    margin-bottom:40px;
}

.hero-title h1{

    font-size:
    clamp(46px,4.2vw,82px);

    line-height:1;
}

.hero-title p{

    font-size:
    clamp(14px,1vw,20px);

    margin-top:12px;
}

.servers{

    width:80vw;
    max-width:1600px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}

.server-card{

    min-height:auto;

    padding:24px;

    border-radius:20px;
}

.server-content h2{

    font-size:
    clamp(52px,3.6vw,80px);

    margin-bottom:10px;
}

.server-content p{

    font-size:
    clamp(16px,1vw,22px);

    margin-bottom:20px;
}

.features{

    grid-template-columns:
    repeat(2,1fr);

    gap:12px;

    margin-bottom:24px;
}

.feature-box{

    padding:16px;
}

.feature-box h3{

    font-size:18px;
}

.feature-box p{

    font-size:12px;
}

.enter-btn{

    padding:18px;

    font-size:
    clamp(16px,1.2vw,22px);

    border-radius:14px;
}

.stats{

    margin-top:18px;

    padding:18px;

    grid-template-columns:
    repeat(2,1fr);
}

.stat h4{

    font-size:
    clamp(20px,1.6vw,28px);
}

.stat span{

    font-size:12px;
}

.navbar{

    padding:
    18px
    clamp(20px,4vw,60px);
}

.logo{

    font-size:
    clamp(30px,2vw,48px);
}

.nav-links{

    gap:
    clamp(16px,2vw,34px);
}

.nav-links a{

    font-size:14px;
}

@media(min-width:1400px){

    .hero{
        min-height:100vh;
        justify-content:center;
    }
}

@media(max-width:900px){

    .servers{
        grid-template-columns:1fr;
    }

    .hero{
        padding-top:140px;
    }

    .server-content h2{
        font-size:64px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr;
    }
}


/* =====================================
   GLOBAL CINEMATIC FONT APPLY
===================================== */

.hero-title h1,
.server-content h2,
.enter-btn,
.server-badge,
.nav-links a,
.discord-btn,
.feature-box h3{

    font-family:'Cinzel', serif;

    letter-spacing:2px;
}

/* HERO TITLE GLOW */

.hero-title h1{

    text-shadow:
    0 0 6px rgba(0,255,255,.35),
    0 0 18px rgba(0,180,255,.25),
    0 0 35px rgba(0,120,255,.18);
}

/* SERVER TITLES */

.server-content h2{

    text-shadow:
    0 0 8px rgba(180,120,255,.25),
    0 0 25px rgba(120,80,255,.20);
}

/* BUTTONS */

.enter-btn{

    letter-spacing:3px;
}

/* NAV LINKS */

.nav-links a{

    font-size:13px;
    letter-spacing:2px;
}




/* =====================================
   CLASSIC FINEST CYAN PATCH
===================================== */

.classic{

    background:
    linear-gradient(rgba(0,183,255,.12), rgba(0,0,0,.75)),
    url('classic.jpg') center/cover no-repeat !important;

    border:1px solid rgba(0,183,255,.18);

    box-shadow:
    0 0 60px rgba(0,183,255,.25),
    inset 0 0 50px rgba(0,183,255,.10) !important;
}

.classic h2{

    color:#7cecff !important;

    text-shadow:
    0 0 4px rgba(0,255,255,.65),
    0 0 10px rgba(0,180,255,.55),
    0 0 22px rgba(0,140,255,.45);
}

.classic .feature-box{
    background:rgba(0,183,255,.05);
    border:1px solid rgba(0,183,255,.12);
}

.classic .feature-box:hover{
    background:rgba(0,183,255,.08);
    border-color:rgba(0,183,255,.25);
    box-shadow:0 0 25px rgba(0,183,255,.15);
}

.classic .feature-box h3{

    color:#ffffff;

    text-shadow:none;
}

.classic .feature-box p{

    color:#aaaaaa;
}

.classic .enter-btn{
    background:linear-gradient(to bottom,#7cecff,#00b7ff) !important;
    box-shadow:0 0 35px rgba(0,183,255,.45) !important;
}

.classic .enter-btn:hover{
    background:linear-gradient(to bottom,#9ef0ff,#33c1ff) !important;
    box-shadow:0 0 45px rgba(0,183,255,.60) !important;
}

.classic .stat h4{
    color:#7cecff;
    text-shadow:
    0 0 5px rgba(0,255,255,.65),
    0 0 15px rgba(0,180,255,.45);
}

.classic .stat span{
    color:#b7eaff;
}

.enter-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    text-decoration:none;

    color:#fff;

    cursor:pointer;
}

/* PREMIUM UPGRADE PATCH */
@keyframes bgZoom{
0%{transform:scale(1.05);}
50%{transform:scale(1.1);}
100%{transform:scale(1.05);}
}
body::before{animation:bgZoom 25s ease-in-out infinite;}

@keyframes logoGlow{
0%,100%{filter:brightness(1);}
50%{filter:brightness(1.25);}
}
.logo{animation:logoGlow 4s infinite;}

.servers{
display:flex !important;
justify-content:center;
}

.classic{
max-width:1100px;
width:100%;
animation:floating 6s ease-in-out infinite;
box-shadow:0 0 30px rgba(0,183,255,.35),0 0 60px rgba(0,183,255,.25),0 0 100px rgba(0,183,255,.15) !important;
}

@keyframes floating{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-8px);}
}

.navbar{
backdrop-filter:blur(25px) saturate(180%);
}

.classic .enter-btn::after{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
animation:buttonSweep 4s linear infinite;
}

@keyframes buttonSweep{
100%{left:120%;}
}
.features{
    margin-bottom:40px;
}

.stats{
    margin-top:0;
}

.server-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:40px 0 30px;
    flex-wrap:wrap;
}

.tab{
    padding:12px 25px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.05);
    color:#fff;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.tab:hover,
.tab.active{
    background:#00b7ff;
    box-shadow:0 0 20px rgba(0,183,255,.5);
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    max-width:1000px;
    margin:auto;
}

.info-box{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(0,183,255,.15);
    border-radius:15px;
    padding:20px;
    text-align:center;
}

.info-box span{
    display:block;
    color:#aaa;
    margin-bottom:8px;
}

.info-box strong{
    color:#7cecff;
    font-size:22px;
}

/* INFO LABELS WHITE */

.info-box span,
.status-label{
    color:#ffffff !important;
    opacity:1 !important;
}

/* =====================================
   HERO SUBTITLE
===================================== */

.hero-subtitle{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:18px;

    color:#b7eaff;

    font-size:18px;

    font-weight:600;

    letter-spacing:3px;

    text-shadow:
        0 0 10px rgba(0,183,255,.25);
}

.hero-subtitle span{

    display:inline-block;

    transition:
        color .35s ease,
        transform .35s ease,
        text-shadow .35s ease,
        letter-spacing .35s ease;
}

.hero-subtitle span:hover{

    color:#ffffff;

    transform:translateY(-2px);

    letter-spacing:5px;

    text-shadow:
        0 0 10px rgba(124,236,255,.95),
        0 0 22px rgba(0,183,255,.75),
        0 0 40px rgba(0,183,255,.45);
}

/* FORCE HERO CLASSIC TO CYAN */

.hero-title h1 span{

    background:linear-gradient(
        to bottom,
        #ffffff,
        #7cecff,
        #00b7ff
    ) !important;

    -webkit-background-clip:text !important;
    -webkit-text-fill-color:transparent !important;

    text-shadow:
        0 0 5px rgba(124,236,255,.8),
        0 0 15px rgba(0,183,255,.6),
        0 0 30px rgba(0,183,255,.4) !important;
}

.feature-box{
    transition:.35s ease;
}

.feature-box:hover{
    transform:translateY(-6px);
    border-color:rgba(124,236,255,.35);
}

.online-text{
    animation:onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse{
    0%,100%{
        opacity:1;
        text-shadow:0 0 10px #7cecff;
    }
    50%{
        opacity:.8;
        text-shadow:
            0 0 20px #7cecff,
            0 0 35px #7cecff;
    }
}

/* DOWNLOAD SECTION */

.download-section{

    width:80vw;
    max-width:1200px;

    margin:80px auto;

    padding:40px;

    border-radius:25px;

    background:rgba(5,10,18,.75);

    border:1px solid rgba(0,183,255,.15);

    backdrop-filter:blur(20px);

    box-shadow:
        0 0 50px rgba(0,183,255,.12);
}

.download-header{

    text-align:center;

    margin-bottom:40px;
}

.download-header h2{

    font-family:'Cinzel',serif;

    font-size:56px;

    color:#7cecff;

    text-shadow:
        0 0 10px rgba(124,236,255,.6),
        0 0 25px rgba(0,183,255,.4);
}

.download-header p{

    color:#b7eaff;

    letter-spacing:2px;
}

.download-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.download-card{

    position:relative;

    overflow:hidden;

    isolation:isolate;

    text-decoration:none;

    padding:35px;

    text-align:center;

    border-radius:18px;

    background:
        linear-gradient(
            180deg,
            rgba(20,28,40,.92),
            rgba(8,12,18,.96)
        );

    border:1px solid rgba(124,236,255,.12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
	
	box-shadow:
        0 0 10px rgba(124,236,255,.06);
}

.download-card::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:18px;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.10),
            transparent
        );

    transform:translateX(-120%);

    transition:transform 1.2s ease;

    pointer-events:none;
}

.download-card:hover{

    transform:translateY(-8px);

    border-color:rgba(124,236,255,.45);

    box-shadow:
        0 0 25px rgba(124,236,255,.18),
        0 0 55px rgba(0,183,255,.12),
        0 15px 35px rgba(0,0,0,.45);
}

.download-card:hover::before{

    transform:translateX(120%);
}

.download-card h3{

    color:#7cecff;

    margin-bottom:10px;

    font-family:'Cinzel',serif;
}

.download-card span{

    color:#d8ecff;
}

.tab-panel{
    display:none;
}

.tab-panel.active{
    display:block;
}

.character-bg{
    transition:transform .2s ease-out;
}

.character-bg::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle,
        rgba(124,236,255,.25),
        transparent 65%
    );

    filter:blur(80px);
}

.download-icon{

    display:block;

    font-size:42px;

    margin-bottom:18px;

    color:#7cecff;

    text-shadow:
        0 0 10px rgba(124,236,255,.7),
        0 0 20px rgba(0,183,255,.45);

    transition:.35s ease;

}

.download-card:hover .download-icon{

    transform:translateY(-5px) scale(1.15);

    color:#ffffff;

    text-shadow:
        0 0 15px #7cecff,
        0 0 30px #00b7ff,
        0 0 45px #00b7ff;
}

/* =====================================
   RAN CURSOR
===================================== */

html,
body{
    cursor: url("../images/normal.cur"), auto;
}

a,
button,
.tab,
.download-card,
.discord-btn{
    cursor: url("../images/attack.cur"), pointer;
}

.download-header h2{

    animation:titleGlow 4s ease-in-out infinite;

}

@keyframes titleGlow{

    0%,100%{

        text-shadow:
            0 0 10px rgba(124,236,255,.45),
            0 0 25px rgba(0,183,255,.25);

    }

    50%{

        text-shadow:
            0 0 18px rgba(124,236,255,.9),
            0 0 45px rgba(0,183,255,.45);

    }

}

/* =====================================
   TOP UP PORTAL
===================================== */

.topup-section{

    width:80vw;
    max-width:1200px;

    margin:80px auto;

    padding:40px;

    border-radius:25px;

    background:rgba(5,10,18,.75);

    border:1px solid rgba(0,183,255,.15);

    backdrop-filter:blur(20px);

    box-shadow:
        0 0 50px rgba(0,183,255,.12);

    position:relative;
    z-index:2;
}

.topup-header{

    text-align:center;

    margin-bottom:35px;
}

.topup-header h2{

    margin:0 0 8px;

    font-family:'Cinzel',serif;

    font-size:56px;

    color:#7cecff;

    text-shadow:
        0 0 10px rgba(124,236,255,.6),
        0 0 25px rgba(0,183,255,.4);

    animation:titleGlow 4s ease-in-out infinite;
}

.topup-header p{

    margin:0;

    color:#b7eaff;

    letter-spacing:2px;
}

/* IFRAME FRAME */

.frame{

    position:relative;

    width:100%;

    height:760px;

    overflow:hidden;

    border-radius:20px;

    background:#04060d;

    border:1px solid rgba(124,236,255,.18);

    box-shadow:
        0 0 20px rgba(124,236,255,.08),
        0 0 55px rgba(0,183,255,.08);

    isolation:isolate;
}

/* Premium animated border */

.frame::before{

    content:'';

    position:absolute;

    inset:-1px;

    border-radius:21px;

    padding:1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(124,236,255,.15) 25%,
            rgba(0,183,255,.8) 50%,
            rgba(124,236,255,.15) 75%,
            transparent 100%
        );

    background-size:200% 100%;

    animation:frameBorderSweep 5s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;

    z-index:3;
}

@keyframes frameBorderSweep{

    0%{
        background-position:200% 0;
    }

    100%{
        background-position:-200% 0;
    }
}

.frame iframe{

    display:block;

    width:100%;

    height:100%;

    border:0;

    background:#04060d;
}

/* IFRAME LOADER */

.frame-loader{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:15px;

    background:
        radial-gradient(
            circle,
            rgba(0,183,255,.12),
            rgba(4,6,13,.98) 65%
        );

    color:#b7eaff;

    font-family:'Rajdhani',sans-serif;

    font-size:16px;

    letter-spacing:2px;

    z-index:5;

    opacity:1;

    visibility:visible;

    transition:
        opacity .5s ease,
        visibility .5s ease;
}

.frame-loader.hidden{

    opacity:0;

    visibility:hidden;

    pointer-events:none;
}

.loader-spinner{

    width:42px;
    height:42px;

    border-radius:50%;

    border:3px solid rgba(124,236,255,.15);

    border-top-color:#7cecff;

    border-right-color:#00b7ff;

    box-shadow:
        0 0 15px rgba(0,183,255,.35);

    animation:topupSpin .8s linear infinite;
}

@keyframes topupSpin{

    to{
        transform:rotate(360deg);
    }
}

@media(max-width:900px){

    .topup-section{

        width:90vw;

        padding:25px;
    }

    .topup-header h2{

        font-size:42px;
    }

    .frame{

        height:700px;
    }
}

@media(max-width:600px){

    .topup-section{

        width:94vw;

        padding:18px;

        margin:50px auto;
    }

    .topup-header h2{

        font-size:34px;
    }

    .topup-header p{

        font-size:14px;
    }

    .frame{

        height:650px;

        border-radius:15px;
    }
}
