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

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

/* 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,
        #f0b5ff,
        #b026ff
    );

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

/* 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{

    width:100%;
    min-height:auto;

    padding:
    120px
    2vw
    40px;

    justify-content:flex-start;
}

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

/* =====================================
   FORCE WHITE LOGO + BATTLEFIELD
===================================== */

.logo{
    background:none !important;
    color:#ffffff !important;
    -webkit-text-fill-color:#ffffff !important;

    text-shadow:
        0 0 5px rgba(255,255,255,.30),
        0 0 15px rgba(255,255,255,.20) !important;
}

.logo::after{
    display:none !important;
}

.hero-title h1 span{
    background:none !important;
    color:#ffffff !important;
    -webkit-text-fill-color:#ffffff !important;

    text-shadow:
        0 0 5px rgba(255,255,255,.30),
        0 0 15px rgba(255,255,255,.20) !important;
}