/* =====================================
   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:
        radial-gradient(circle at left,
        rgba(176,38,255,.18),
        transparent 40%),

        radial-gradient(circle at right,
        rgba(125,60,255,.18),
        transparent 40%),

        linear-gradient(
        180deg,
        #04060d,
        #090015,
        #04060d);

    z-index:-3;
}

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;

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

    filter:
        drop-shadow(0 0 8px rgba(176,38,255,.55))
        drop-shadow(0 0 50px rgba(216,109,255,.45));
}

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

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

.text-logo{

    height:90px;
    width:auto;

    object-fit:contain;

    transition:.35s ease;

    filter:
        drop-shadow(0 0 15px rgba(216,109,255,.45))
        drop-shadow(0 0 35px rgba(176,38,255,.25));
}

.text-logo:hover{

    transform:scale(1.03);

    filter:
        drop-shadow(0 0 20px rgba(216,109,255,.65))
        drop-shadow(0 0 50px rgba(176,38,255,.45));
}

@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(216,109,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,
        #f3b3ff,
        #d86dff
    );

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

    text-shadow:
    0 0 4px rgba(216,109,255,.65),
    0 0 10px rgba(176,38,255,.55),
    0 0 22px rgba(176,38,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(216,109,255,.25),
        rgba(176,38,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::after{
    width:100%;
}

/* DISCORD */

.discord-btn{

    padding:15px 30px;

    border-radius:16px;

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

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

    color:#fff;
    text-decoration:none;

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

    transition:.35s;
}

.discord-btn:hover{

    background:#b026ff;

    transform:translateY(-3px);

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

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

.hero{

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

    padding:
    180px
    40px
    100px;

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

.hero{
    position:relative;
    overflow:visible !important;
}

/* 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 6px rgba(216,109,255,.35),
    0 0 18px rgba(176,38,255,.25),
    0 0 35px rgba(176,38,255,.18);
}


.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);
}


/* 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);
}

.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%);
    }
}


.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,
        #f3b3ff,
        #d86dff
    );

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

    text-shadow:
    0 0 4px rgba(216,109,255,.65),
    0 0 10px rgba(176,38,255,.55),
    0 0 22px rgba(176,38,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(216,109,255,.25),
        rgba(176,38,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,
		#ffffff,
		#f3b3ff,
		#d86dff
	);

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

	text-shadow:
		0 0 10px rgba(216,109,255,.6),
		0 0 30px rgba(216,109,255,.4);
}

.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);
}

.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 h1{
    font-size:clamp(120px,10vw,220px);
}

.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-card{
    position:relative;
    z-index:10;
}

.server-card{
    position:relative;
    z-index:5;
}

.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(216,109,255,.35),
    0 0 18px rgba(176,38,255,.25),
    0 0 35px rgba(176,38,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;
}


.babyran{
    background:
    linear-gradient(
        rgba(20,10,30,.88),
        rgba(0,0,0,.92)
    ) !important;
}

.babyran h2{

    color:#d86dff !important;

    text-shadow:
    0 0 5px rgba(216,109,255,.8),
    0 0 15px rgba(216,109,255,.6),
    0 0 30px rgba(216,109,255,.4);
}

.babyran .feature-box{
    background:rgba(216,109,255,.05);
    border:1px solid rgba(216,109,255,.12);
}

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

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

    box-shadow:
        0 0 35px rgba(216,109,255,.45) !important;
}

.babyran .stat h4{
    color:#d86dff;
}

.babyran .stat span{
    color:#f3b3ff;
}

.babyran .feature-box h3{

    color:#ffffff;

    text-shadow:none;
}

.babyran .feature-box p{

    color:#aaaaaa;
}

.babyran .stat h4{
    color:#d86dff;
    text-shadow:
    0 0 5px rgba(216,109,255,.65),
    0 0 15px rgba(176,38,255,.45);
}

.babyran .stat span{
   color:#f3d8ff;
}

.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;
}

.babyran{
max-width:1100px;
width:100%;

box-shadow:
0 0 30px rgba(216,109,255,.35),
0 0 60px rgba(216,109,255,.25),
0 0 100px rgba(216,109,255,.15) !important;
}


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

.babyran .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:#d86dff;
    box-shadow:0 0 20px rgba(216,109,255,.5);
}

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

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

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

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

/* INFO LABELS WHITE */

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

.hero-subtitle{
    color:#f3d8ff;
    font-size:18px;
    letter-spacing:3px;
    margin-top:15px;
    text-shadow:0 0 10px rgba(216,109,255,.25);
}

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

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

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

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

/* 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(216,109,255,.15);

    backdrop-filter:blur(20px);

    box-shadow:
        0 0 50px rgba(216,109,255,.15);
}

.download-header{

    text-align:center;

    margin-bottom:40px;
}

.download-header h2{

    font-family:'Cinzel',serif;

    font-size:56px;

    color:#d86dff;

    text-shadow:
        0 0 10px rgba(216,109,255,.6),
        0 0 25px rgba(176,38,255,.4);
}

.download-header p{

    color:#f3d8ff;

    letter-spacing:2px;
}

.download-grid{

    display:grid;

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

    gap:20px;
}

.download-card{

    text-decoration:none;

    padding:35px;

    text-align:center;

    border-radius:18px;

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

    border:1px solid rgba(216,109,255,.12);

    transition:.35s;
}

.download-card:hover{

    transform:translateY(-8px);

    border-color:rgba(216,109,255,.4);

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

.download-card h3{

    color:#d86dff;

    margin-bottom:10px;

    font-family:'Cinzel',serif;
}

.download-card span{

     color:#e8cfff;
}

.hero-title,
.server-tabs,
.info-grid,
.servers{
    position:relative;
    z-index:5;
}

.hero{
    position:relative;
    overflow:visible;
}

@media(max-width:900px){

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

    .download-section{
        width:92vw;
        padding:25px;
    }
}

@media(max-width:500px){

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

.download-card i{
    display:block;
    font-size:42px;
    margin-bottom:15px;
    color:#d86dff;
}

.babyran:hover{

    box-shadow:
    0 0 40px rgba(216,109,255,.45),
    0 0 80px rgba(216,109,255,.25),
    0 0 140px rgba(216,109,255,.18);
}

/* ===== BABYRAN V2 HERO ===== */

.hero{
    padding-top:110px;
    padding-bottom:80px;
}

.hero-title{
    position:relative;
    z-index:5;
    margin-bottom:30px;
}

.hero-title h1{
    font-size:clamp(120px,10vw,220px);
    letter-spacing:6px;
    font-weight:700;
    line-height:.9;
    letter-spacing:4px;
}

.hero-subtitle{
    font-size:24px;
    letter-spacing:6px;
    margin-top:18px;
}

.server-tabs{
    margin-top:35px;
    margin-bottom:25px;
}

.tab{
    min-width:170px;
    height:52px;

    background:rgba(15,10,30,.85);

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

    box-shadow:
        inset 0 0 15px rgba(216,109,255,.08),
        0 0 15px rgba(216,109,255,.12);
}

.tab.active,
.tab:hover{
    background:
    linear-gradient(
        to bottom,
        #d86dff,
        #7d3cff
    );
}

/* INFO BAR */

.info-grid{
    max-width:950px;
    gap:15px;
}

.info-box{
    min-height:110px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:rgba(5,5,15,.88);

    border:1px solid rgba(216,109,255,.25);

    box-shadow:
        0 0 20px rgba(216,109,255,.10);
}

/* MAIN PANEL */

.babyran{

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

    background:
    linear-gradient(
        180deg,
        rgba(8,5,18,.96),
        rgba(4,4,10,.98)
    ) !important;

    border:2px solid rgba(216,109,255,.35);

    border-radius:30px;

    box-shadow:
        0 0 25px rgba(216,109,255,.35),
        0 0 80px rgba(216,109,255,.15);

    animation:none;
}

.server-content h2{
    font-size:80px;
    margin-bottom:8px;
}

.server-content p{
    font-size:32px;
    margin-bottom:35px;
}

/* FEATURES */

.features{
    gap:20px;
}

.feature-box{

    min-height:120px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    background:
    rgba(10,10,20,.95);

    border:1px solid rgba(216,109,255,.22);
}

/* STATS */

.stats{

    margin-top:30px;

    background:
    rgba(8,8,15,.95);

    border:1px solid rgba(216,109,255,.22);
}

.stat h4{
    font-size:52px;
}

.info-box:hover{

    transform:translateY(-4px);

    box-shadow:
        0 0 25px rgba(216,109,255,.25);

    border-color:
        rgba(216,109,255,.45);
}

.chibi-bg{
    position:absolute;

    left:50%;
    top:80px;

    transform:translateX(-50%);

    width:100%;

    display:flex;
    justify-content:center;

    z-index:2;

    pointer-events:none;
}

.chibi-bg img{
    width:auto;
    height:650px;

    max-width:none;

    opacity:.28;

    filter:
        drop-shadow(0 0 25px rgba(216,109,255,.40))
        drop-shadow(0 0 80px rgba(176,38,255,.25));

}

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

.hero-title,
.server-tabs,
.info-grid,
.servers{
    position:relative;
    z-index:10;
}

.download-section{
    position:relative;
    z-index:10;
}

.info-grid{
    position:relative;
    z-index:10;
}

.hero{
    padding-top:140px;
    padding-bottom:80px;
}

.hero-title h1{
    font-size:140px !important;
}

.hero-subtitle{
    font-size:26px !important;
}

.info-grid{
    max-width:1200px !important;
}

.servers{
    width:100% !important;
    max-width:1400px !important;
}

.babyran{
    max-width:1250px !important;
}

.server-content h2{
    font-size:72px !important;
}

.server-content p{
    font-size:20px !important;
}

.feature-box{
    backdrop-filter:blur(15px);
}

.feature-box:hover{
    transform:translateY(-8px);
}

.download-card:hover{
    transform:translateY(-8px) scale(1.02);
}