
:root{
    --bg-primary:#06090f;
    --bg-secondary:#1b2438;
    --text-primary:#ffffff;
    --text-secondary:#aab4c5;
    --accent-blue:#00d4ff;
    --accent-red:#ff3030;
    --accent-gold:#ffd700;
    --glass-bg:rgba(255,255,255,.05);
    --glass-border:rgba(255,255,255,.12);
    --radius:25px;
    --transition:.35s ease;
}

*{box-sizing:border-box;}

body{
    margin:0;
    color:var(--text-primary);
    font-family:"Inter",sans-serif;
    background:radial-gradient(circle at top,var(--bg-secondary),var(--bg-primary) 60%);
}

/* Original stylesheet retained below for compatibility and further cleanup */

/* ================= GLOBAL ================= */

*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:
    radial-gradient(circle at top,#1b2438,#06090f 55%);
    color:white;
    font-family:"Inter",sans-serif;
}

/* ================= NAVIGATION ================= */

nav{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(6,9,15,.75);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.1);
}

.nav-content{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-family:"Space Grotesk",sans-serif;
    font-size:1.4rem;
    font-weight:700;
    color:white;
    text-decoration:none;
}

.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    color:#9da8bb;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:white;
}

/* ================= BUTTON ================= */

.join-btn{
    background:linear-gradient(135deg,#ff3030,#9b0000);
    padding:12px 25px;
    border-radius:14px;
    color:white;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 0 25px rgba(255,0,0,.4);
    transition:.3s;
}

.join-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 40px rgba(255,0,0,.7);
}

/* ================= HERO ================= */

.hero{
    padding:120px 20px 80px;
    text-align:center;
}

.container{
    max-width:1200px;
    margin:auto;
}

.tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#ff5555;
    font-weight:600;
    font-size:.85rem;
}

.hero h1{
    font-family:"Space Grotesk",sans-serif;
    font-size:clamp(3rem,7vw,5rem);
    margin:25px 0;
}

.hero p{
    max-width:700px;
    margin:auto;
    line-height:1.7;
    color:#aab4c5;
    font-size:1.1rem;
}

/* ================= STAFF SECTION ================= */

.staff{
    padding:40px 20px 100px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    position:relative;
    overflow:hidden;
    padding:35px;
    border-radius:25px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,.1),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    transition:.35s;
}

.card::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#ff3030;
    filter:blur(100px);
    opacity:.12;
    top:-80px;
    right:-80px;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#ff4444;

    box-shadow:
    0 20px 60px rgba(0,0,0,.5),
    0 0 30px rgba(255,0,0,.2);
}

/* ================= FOUNDERS ================= */

.founder{
    border-color:#ffd700;
}

.founder:hover{
    box-shadow:
    0 0 40px rgba(255,215,0,.3),
    0 20px 60px rgba(0,0,0,.5);
}

/* ================= DEVELOPERS ================= */

.developer{
    border-color:rgba(255,48,48,.35);
}

.developer:hover{
    border-color:#ff3030;

    box-shadow:
    0 0 40px rgba(255,48,48,.3),
    0 20px 60px rgba(0,0,0,.5);
}

.developer .icon{
    text-shadow:
    0 0 20px rgba(255,48,48,.5);
}

/* ================= CONTENT ================= */

.icon{
    font-size:2.5rem;
    margin-bottom:20px;
}

h2{
    font-family:"Space Grotesk",sans-serif;
    font-size:1.6rem;
}

.staff-list{
    list-style:none;
    padding:0;
}

.staff-list li{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.name{
    font-weight:700;
}

.gold{
    color:#ffd700;
    text-shadow:0 0 12px #ffd700;
}

.role{
    display:block;
    font-size:.85rem;
    margin-top:5px;
    color:#8f9bad;
}

.desc{
    color:#aab4c5;
    line-height:1.6;
    margin-top:20px;
}

/* ================= OPEN POSITION ================= */

.open{
    padding:20px;
    border-radius:15px;
    background:rgba(255,255,255,.05);
}

.open strong{
    display:block;
    color:#ff5555;
    margin-bottom:5px;
}

/* ================= FOOTER ================= */

footer{
    background:#03050a;
    padding:40px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-logo{
    font-family:"Space Grotesk",sans-serif;
    font-size:1.5rem;
    font-weight:700;
}

.muted{
    color:#697386;
}

/* ================= MOBILE ================= */

@media(max-width:850px){

    .nav-content{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}


*{
box-sizing:border-box;
}


body{

margin:0;

background:
radial-gradient(circle at top,#1b2438,#06090f 60%);

color:white;

font-family:"Inter",sans-serif;

}


.container{

max-width:1200px;

width:90%;

margin:auto;

}



/* NAV */


nav{

position:sticky;

top:0;

z-index:20;

background:rgba(6,9,15,.8);

backdrop-filter:blur(15px);

border-bottom:1px solid rgba(255,255,255,.1);

}


.nav-content{

display:flex;

align-items:center;

justify-content:space-between;

padding:20px;

max-width:1200px;

margin:auto;

}


.logo{

font-family:"Space Grotesk";

font-size:1.4rem;

font-weight:700;

text-decoration:none;

color:white;

}


.nav-links{

display:flex;

gap:25px;

}


.nav-links a{

color:#9da8bb;

text-decoration:none;

transition:.3s;

}


.nav-links a:hover,
.nav-links .active{

color:white;

}



.join-btn{

background:linear-gradient(135deg,#ff3030,#990000);

padding:12px 25px;

border-radius:14px;

text-decoration:none;

color:white;

font-weight:700;

box-shadow:0 0 25px rgba(255,0,0,.4);

}




/* HERO */


.hero{

padding:120px 20px 80px;

text-align:center;

}


.badge{

display:inline-block;

padding:8px 20px;

border-radius:50px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

color:#ff5555;

font-weight:600;

font-size:.85rem;

}



h1{

font-family:"Space Grotesk";

font-size:clamp(3rem,7vw,5rem);

margin:25px 0;

}


.hero p{

max-width:700px;

margin:auto;

color:#aab4c5;

font-size:1.1rem;

line-height:1.7;

}





/* FEATURES */


.features{

padding:40px 0 100px;

}


.feature-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}



.feature-card{

padding:35px;

border-radius:25px;

background:

linear-gradient(

145deg,

rgba(255,255,255,.1),

rgba(255,255,255,.03)

);


border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(15px);

transition:.35s;

}



.feature-card:hover{

transform:translateY(-10px);

border-color:#ff4444;

box-shadow:

0 20px 50px rgba(0,0,0,.5),

0 0 30px rgba(255,0,0,.2);

}



.icon{

font-size:2.5rem;

margin-bottom:20px;

}



h2{

font-family:"Space Grotesk";

margin:0 0 15px;

font-size:1.5rem;

}



.feature-card p{

color:#aab4c5;

line-height:1.6;

}





/* FOOTER */


footer{

background:#03050a;

padding:40px;

text-align:center;

border-top:1px solid rgba(255,255,255,.1);

}


.logo-footer{

font-family:"Space Grotesk";

font-size:1.5rem;

font-weight:700;

}




@media(max-width:850px){


.nav-content{

flex-direction:column;

gap:20px;

}


.nav-links{

flex-wrap:wrap;

justify-content:center;

}


}



*{
box-sizing:border-box;
}


body{

margin:0;

background:
radial-gradient(circle at top,#1b2438,#06090f 60%);

font-family:"Inter",sans-serif;

color:white;

}



.container{

max-width:1200px;

width:90%;

margin:auto;

}





/* NAV */


nav{

position:sticky;

top:0;

z-index:50;

background:rgba(6,9,15,.8);

backdrop-filter:blur(15px);

border-bottom:1px solid rgba(255,255,255,.1);

}


.nav-content{

max-width:1200px;

margin:auto;

padding:20px;

display:flex;

align-items:center;

justify-content:space-between;

}



.logo{

font-family:"Space Grotesk";

font-size:1.4rem;

font-weight:700;

color:white;

text-decoration:none;

}



.nav-links{

display:flex;

gap:25px;

}


.nav-links a{

color:#9da8bb;

text-decoration:none;

transition:.3s;

}


.nav-links a:hover,
.nav-links .active{

color:white;

}




.join-btn{

background:linear-gradient(135deg,#ff3030,#990000);

padding:12px 25px;

border-radius:14px;

color:white;

text-decoration:none;

font-weight:700;

box-shadow:0 0 25px rgba(255,0,0,.4);

}




/* HERO */


.hero{

text-align:center;

padding:120px 20px 80px;

}



.badge{

display:inline-block;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

padding:8px 20px;

border-radius:50px;

color:#ff5555;

font-size:.85rem;

font-weight:600;

}



h1{

font-family:"Space Grotesk";

font-size:clamp(3rem,7vw,5rem);

margin:25px 0;

}


.hero p{

max-width:750px;

margin:auto;

color:#aab4c5;

font-size:1.1rem;

line-height:1.7;

}





/* SECTIONS */


.section{

padding:50px 0 90px;

}


.section-title{

font-family:"Space Grotesk";

font-size:2rem;

margin-bottom:35px;

}



.grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}




/* CARDS */


.card{

padding:35px;

border-radius:25px;

background:

linear-gradient(

145deg,

rgba(255,255,255,.1),

rgba(255,255,255,.03)

);


border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(15px);

transition:.35s;

}



.card:hover{

transform:translateY(-10px);

border-color:#ff4444;

box-shadow:

0 20px 50px rgba(0,0,0,.5),

0 0 30px rgba(255,0,0,.2);

}



.police:hover{

border-color:#298cff;

box-shadow:0 0 35px rgba(41,140,255,.25);

}



.fire:hover{

border-color:#ff5a1f;

box-shadow:0 0 35px rgba(255,90,31,.25);

}



.civil:hover{

border-color:#00d084;

box-shadow:0 0 35px rgba(0,208,132,.25);

}




.icon{

font-size:2.5rem;

margin-bottom:15px;

}



.tag{

display:inline-block;

padding:5px 12px;

font-size:.75rem;

border-radius:20px;

background:rgba(255,255,255,.08);

color:#aaa;

margin-bottom:15px;

}




h2,h3{

font-family:"Space Grotesk";

}



h3{

font-size:1.4rem;

}




ul{

padding-left:20px;

color:#c7cfdb;

line-height:2;

}




.description{

color:#9da8bb;

line-height:1.6;

margin-top:20px;

}




/* FOOTER */


footer{

text-align:center;

padding:40px;

background:#03050a;

border-top:1px solid rgba(255,255,255,.1);

}


.logo-footer{

font-family:"Space Grotesk";

font-size:1.5rem;

font-weight:700;

}




@media(max-width:850px){


.nav-content{

flex-direction:column;

gap:20px;

}


.nav-links{

flex-wrap:wrap;

justify-content:center;

}


}

*{
box-sizing:border-box;
}


body{

margin:0;

background:
radial-gradient(circle at top,#1b2438,#06090f 60%);

font-family:"Inter",sans-serif;

color:white;

}


.container{

width:90%;

max-width:1200px;

margin:auto;

}




/* NAVIGATION */


nav{

position:sticky;

top:0;

z-index:50;

background:rgba(6,9,15,.8);

backdrop-filter:blur(15px);

border-bottom:1px solid rgba(255,255,255,.1);

}


.nav-content{

max-width:1200px;

margin:auto;

padding:20px;

display:flex;

align-items:center;

justify-content:space-between;

}



.logo{

font-family:"Space Grotesk";

font-size:1.4rem;

font-weight:700;

color:white;

text-decoration:none;

}



.nav-links{

display:flex;

gap:25px;

}


.nav-links a{

color:#9da8bb;

text-decoration:none;

transition:.3s;

}


.nav-links a:hover,
.active{

color:white;

}



.join-btn{

background:linear-gradient(135deg,#ff3030,#990000);

padding:12px 25px;

border-radius:14px;

color:white;

font-weight:700;

text-decoration:none;

box-shadow:0 0 25px rgba(255,0,0,.4);

}





/* HERO */


.hero{

text-align:center;

padding:120px 20px 80px;

}


.tag{

display:inline-block;

padding:8px 20px;

border-radius:50px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

color:#00d4ff;

font-weight:600;

font-size:.85rem;

}



h1{

font-family:"Space Grotesk";

font-size:clamp(3rem,7vw,5rem);

margin:25px 0;

}


.hero p{

max-width:750px;

margin:auto;

color:#aab4c5;

line-height:1.7;

font-size:1.1rem;

}




/* RANKS */


.section{

padding:50px 0 100px;

}



.title{

font-family:"Space Grotesk";

font-size:2.2rem;

margin-bottom:40px;

}



.rank-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}



.card{

background:

linear-gradient(

145deg,

rgba(255,255,255,.1),

rgba(255,255,255,.03)

);

border:1px solid rgba(255,255,255,.12);

border-radius:25px;

padding:35px;

backdrop-filter:blur(15px);

transition:.35s;

}



.card:hover{

transform:translateY(-10px);

box-shadow:

0 20px 50px rgba(0,0,0,.5);

}





.rank-card:hover{

border-color:#00d4ff;

box-shadow:

0 0 35px rgba(0,212,255,.25);

}




.rank-number{

width:75px;

height:75px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:1.8rem;

font-weight:800;

background:

linear-gradient(135deg,#00d4ff,#0066ff);

color:#00141f;

margin-bottom:25px;

box-shadow:

0 0 25px rgba(0,212,255,.4);

}



.rank-card h2{

font-family:"Space Grotesk";

font-size:1.8rem;

}



ul{

padding:0;

list-style:none;

}



li{

padding:12px 0;

border-bottom:

1px solid rgba(255,255,255,.08);

color:#b9c3d3;

}


li:last-child{

border:none;

}



strong{

color:white;

}




/* TRUSTED MEMBER */


.trusted{

background:

rgba(255,255,255,.03);

padding:80px 0;

}



.trusted-card{

text-align:center;

max-width:1000px;

margin:auto;

}



.trusted-icon{

font-size:4rem;

margin-bottom:20px;

}


.trusted-card p{

color:#aab4c5;

line-height:1.9;

font-size:1.05rem;

}


.highlight{

color:#00d4ff;

font-weight:700;

}




/* FOOTER */


footer{

background:#03050a;

padding:40px;

text-align:center;

border-top:1px solid rgba(255,255,255,.1);

}


.logo-footer{

font-family:"Space Grotesk";

font-size:1.5rem;

font-weight:700;

}





@media(max-width:850px){


.nav-content{

flex-direction:column;

gap:20px;

}


.nav-links{

flex-wrap:wrap;

justify-content:center;

}

}

*{
box-sizing:border-box;
}


body{

margin:0;

background:

radial-gradient(circle at top,#1b2438,#06090f 60%);

color:white;

font-family:"Inter",sans-serif;

}



.container{

width:90%;

max-width:1200px;

margin:auto;

}



/* NAV */


nav{

position:sticky;

top:0;

z-index:50;

background:rgba(6,9,15,.8);

backdrop-filter:blur(15px);

border-bottom:1px solid rgba(255,255,255,.1);

}


.nav-content{

max-width:1200px;

margin:auto;

padding:20px;

display:flex;

align-items:center;

justify-content:space-between;

}


.logo{

font-family:"Space Grotesk";

font-size:1.4rem;

font-weight:700;

color:white;

text-decoration:none;

}


.nav-links{

display:flex;

gap:25px;

}


.nav-links a{

color:#9da8bb;

text-decoration:none;

}


.nav-links .active,
.nav-links a:hover{

color:white;

}



.join-btn{

background:linear-gradient(135deg,#ff3030,#990000);

padding:12px 25px;

border-radius:14px;

text-decoration:none;

color:white;

font-weight:700;

}



/* HERO */


.hero{

text-align:center;

padding:120px 20px 80px;

}


.tag{

display:inline-block;

padding:8px 20px;

border-radius:50px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.15);

color:#00d4ff;

}



h1{

font-family:"Space Grotesk";

font-size:clamp(3rem,7vw,5rem);

margin:25px 0;

}



.hero p{

max-width:750px;

margin:auto;

color:#aab4c5;

line-height:1.7;

}




/* AOP */


.section{

padding:50px 0 100px;

}



.title{

font-family:"Space Grotesk";

font-size:2.2rem;

margin-bottom:40px;

}



.aop-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(380px,1fr));

gap:35px;

}



.card{

background:

linear-gradient(

145deg,

rgba(255,255,255,.1),

rgba(255,255,255,.03)

);

border:1px solid rgba(255,255,255,.12);

border-radius:25px;

overflow:hidden;

transition:.35s;

}



.card:hover{

transform:translateY(-10px);

border-color:#00d4ff;

box-shadow:

0 0 35px rgba(0,212,255,.25);

}



.aop-image{

width:100%;

height:300px;

object-fit:cover;

cursor:pointer;

transition:.4s;

}



.aop-image:hover{

transform:scale(1.05);

}



.image-container{

overflow:hidden;

}



.aop-content{

padding:30px;

}



.number{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:

linear-gradient(135deg,#00d4ff,#0066ff);

color:#00141f;

font-weight:900;

margin-bottom:20px;

}



h2,h3{

font-family:"Space Grotesk";

}


h3{

font-size:1.5rem;

line-height:1.4;

}





/* LIGHTBOX */


.lightbox{

display:none;

position:fixed;

z-index:100;

inset:0;

background:

rgba(0,0,0,.9);

align-items:center;

justify-content:center;

padding:30px;

}



.lightbox img{

max-width:95%;

max-height:90%;

border-radius:15px;

box-shadow:

0 0 50px rgba(0,212,255,.4);

}



.close{

position:absolute;

top:30px;

right:40px;

font-size:3rem;

cursor:pointer;

color:white;

}





/* FOOTER */


footer{

background:#03050a;

padding:40px;

text-align:center;

border-top:1px solid rgba(255,255,255,.1);

}



.logo-footer{

font-family:"Space Grotesk";

font-size:1.5rem;

font-weight:700;

}




@media(max-width:850px){

.nav-content{

flex-direction:column;

gap:20px;

}


.nav-links{

flex-wrap:wrap;

justify-content:center;

}


.aop-grid{

grid-template-columns:1fr;

}


}

/* ================= SEARCH SECTION ================= */


.search-section {

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );

    padding:35px;

    margin-bottom:40px;

    border-radius:24px;

    border:1px solid rgba(255,255,255,0.12);

    box-shadow:
    0 20px 50px rgba(0,0,0,.35);

    backdrop-filter:blur(15px);

}



.search-container {

    position:relative;

    max-width:650px;

    margin:auto;

}



.search-container input {

    width:100%;

    padding:18px 25px 18px 60px;

    background:
    rgba(0,0,0,.35);

    border:

    2px solid rgba(0,212,255,.5);

    border-radius:16px;

    color:white;

    font-size:1.1rem;

    font-weight:500;

    transition:.3s;

}



.search-container input::placeholder {

    color:#8892a5;

}



.search-container input:focus {

    outline:none;

    border-color:#00d4ff;

    box-shadow:

    0 0 25px rgba(0,212,255,.35);

    transform:translateY(-2px);

}




.search-icon {

    position:absolute;

    left:22px;

    top:50%;

    transform:translateY(-50%);

    color:#00d4ff;

    font-size:24px;

}




.search-label {

    text-align:center;

    margin-bottom:15px;

    color:#00d4ff;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}





/* ================= VEHICLE TABLE ================= */



.vehicle-card {

    background:

    linear-gradient(
    145deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.02)
    );

    border:

    1px solid rgba(255,255,255,.12);

    border-radius:22px;

    overflow:hidden;

    backdrop-filter:blur(15px);

}




.vehicle-table {

    width:100%;

    border-collapse:collapse;

}



.vehicle-table th {

    background:

    rgba(0,212,255,.12);

    color:#00d4ff;

    text-align:left;

    padding:18px;

    font-family:"Space Grotesk";

    font-size:1rem;

}



.vehicle-table td {

    padding:16px 18px;

    border-bottom:

    1px solid rgba(255,255,255,.08);

    color:#b8c1d1;

}



.vehicle-table tr {

    transition:.25s;

}



.vehicle-table tbody tr:hover {

    background:

    rgba(0,212,255,.08);

}



.vehicle-table td:nth-child(3) {

    color:white;

    font-weight:700;

    letter-spacing:.5px;

}



.vehicle-table td:nth-child(3):hover {

    color:#00d4ff;

}




/* Vertical separators */


.vehicle-table th:not(:last-child),
.vehicle-table td:not(:last-child){

border-right:

1px solid rgba(0,212,255,.15);

}




/* Vehicle Count */


.vehicle-count {

text-align:center;

color:#00d4ff;

font-size:.95rem;

font-weight:600;

margin:15px 0;

}



/* Mobile */


@media(max-width:768px){


.search-section {

padding:25px 15px;

}


.vehicle-table {

font-size:.9rem;

}


.vehicle-table th,
.vehicle-table td {

padding:12px;

}


}




/* ================= HALF PAGE THUMBNAIL SLIDESHOW ================= */

.tab-thumbnail {

    position: relative;

    width: 100%;

    height: 50vh; /* half the screen height */

    min-height: 350px;

    overflow: hidden;

}



/* Images fill the banner */

.tab-thumbnail img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;


    opacity: 0;

    transform: scale(1.1);

    animation: thumbnailFade 12s infinite;

}



/* Image timing */

.tab-thumbnail img:nth-child(1) {
    animation-delay: 0s;
}


.tab-thumbnail img:nth-child(2) {
    animation-delay: 4s;
}


.tab-thumbnail img:nth-child(3) {
    animation-delay: 8s;
}



/* Fade + zoom */

@keyframes thumbnailFade {

    0% {
        opacity: 0;
        transform: scale(1.1);
    }


    8% {
        opacity: 1;
        transform: scale(1);
    }


    33% {
        opacity: 1;
        transform: scale(1);
    }


    41% {
        opacity: 0;
        transform: scale(1.1);
    }


    100% {
        opacity: 0;
    }

}


/* Optional dark overlay */

.tab-thumbnail::after {

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

}

/* ================= CLEANED & RESPONSIVE CSS - Desktop + Mobile Optimized ================= */

:root{
    --bg-primary:#06090f;
    --bg-secondary:#1b2438;
    --text-primary:#ffffff;
    --text-secondary:#aab4c5;
    --accent-blue:#00d4ff;
    --accent-red:#ff3030;
    --accent-gold:#ffd700;
    --glass-bg:rgba(255,255,255,.05);
    --glass-border:rgba(255,255,255,.12);
    --radius:25px;
    --transition:.35s ease;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    color:var(--text-primary);
    font-family:"Inter",sans-serif;
    background:radial-gradient(circle at top,var(--bg-secondary),var(--bg-primary) 60%);
}

/* ================= NAVIGATION ================= */

nav{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(6,9,15,.85);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.1);
}

.nav-content{
    max-width:1200px;
    margin:auto;
    padding:25px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-family:"Space Grotesk",sans-serif;
    font-size:1.6rem;
    font-weight:700;
    color:white;
    text-decoration:none;
}

.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    color:#9da8bb;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:white;
}

/* ================= BUTTON ================= */

.join-btn{
    background:linear-gradient(135deg,#ff3030,#9b0000);
    padding:14px 28px;
    border-radius:14px;
    color:white;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 0 25px rgba(255,0,0,.4);
    transition:.3s;
}

.join-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 40px rgba(255,0,0,.7);
}

/* ================= HERO ================= */

.hero{
    padding:140px 20px 100px;
    text-align:center;
}

.container{
    max-width:1200px;
    width:90%;
    margin:auto;
}

.tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#ff5555;
    font-weight:600;
    font-size:.85rem;
}

.hero h1{
    font-family:"Space Grotesk",sans-serif;
    font-size:clamp(3rem,7vw,5.5rem);
    margin:30px 0 25px;
    line-height:1.1;
}

.hero p{
    max-width:700px;
    margin:auto;
    line-height:1.7;
    color:#aab4c5;
    font-size:1.1rem;
}

/* ================= CARDS & GRIDS ================= */

.grid, .feature-grid, .rank-grid, .aop-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.card, .feature-card {
    position:relative;
    padding:40px 35px;
    border-radius:25px;
    background:linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    transition:.35s;
}

.card:hover, .feature-card:hover {
    transform:translateY(-10px);
    border-color:#ff4444;
    box-shadow:0 20px 60px rgba(0,0,0,.5), 0 0 30px rgba(255,0,0,.2);
}

.card::before {
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:#ff3030;
    filter:blur(100px);
    opacity:.12;
    top:-80px;
    right:-80px;
}

/* Special card variants */
.founder { border-color:#ffd700; }
.founder:hover { box-shadow:0 0 40px rgba(255,215,0,.3), 0 20px 60px rgba(0,0,0,.5); }

.developer { border-color:rgba(255,48,48,.35); }
.developer:hover { border-color:#ff3030; box-shadow:0 0 40px rgba(255,48,48,.3), 0 20px 60px rgba(0,0,0,.5); }

/* ================= ICONS & TEXT ================= */

.icon{
    font-size:2.5rem;
    margin-bottom:20px;
}

h2, h3, .section-title, .title {
    font-family:"Space Grotesk",sans-serif;
}

h2 { font-size:1.6rem; }
h3 { font-size:1.5rem; }

/* ================= FOOTER ================= */

footer{
    background:#03050a;
    padding:50px 20px 30px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-logo, .logo-footer{
    font-family:"Space Grotesk",sans-serif;
    font-size:1.6rem;
    font-weight:700;
}

/* ================= SEARCH & TABLE ================= */

.search-section {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    padding:35px;
    margin-bottom:40px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
    backdrop-filter:blur(15px);
}

.vehicle-card {
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    overflow:hidden;
    backdrop-filter:blur(15px);
}

.vehicle-table {
    width:100%;
    border-collapse:collapse;
}

.vehicle-table th {
    background:rgba(0,212,255,.12);
    color:#00d4ff;
    padding:18px;
    font-family:"Space Grotesk";
}

.vehicle-table td {
    padding:16px 18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* ================= THUMBNAIL SLIDESHOW ================= */

.tab-thumbnail {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.tab-thumbnail img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: thumbnailFade 12s infinite;
}

.tab-thumbnail img:nth-child(1) { animation-delay: 0s; }
.tab-thumbnail img:nth-child(2) { animation-delay: 4s; }
.tab-thumbnail img:nth-child(3) { animation-delay: 8s; }

@keyframes thumbnailFade {
    0%   { opacity: 0; transform: scale(1.1); }
    8%   { opacity: 1; transform: scale(1); }
    33%  { opacity: 1; transform: scale(1); }
    41%  { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; }
}

.tab-thumbnail::after {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

/* ================= DESKTOP + MOBILE RESPONSIVE ================= */

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-content {
        padding: 18px 15px;
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding: 100px 15px 70px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 8.5vw, 4.2rem);
    }

    .card, .feature-card {
        padding: 30px 22px;
    }

    .section, .staff, .features {
        padding: 60px 15px;
    }

    .grid, .feature-grid, .rank-grid, .aop-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .join-btn {
        padding: 12px 24px;
    }

    .search-section {
        padding: 25px 15px;
    }

    .vehicle-table th,
    .vehicle-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .hero {
        padding: 85px 15px 55px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 9vw, 3.8rem);
    }

    .card, .feature-card {
        padding: 28px 20px;
    }

    .nav-links {
        gap: 16px;
    }
}

/* Table scroll on mobile */
@media (max-width: 768px) {
    .vehicle-card {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ================= RULES PAGE ================= */

.rules-list{
    list-style:none;
    padding:0;
    margin:0;
}

.rules-list li{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:var(--text-secondary);
    line-height:1.7;
}

.rules-list li:last-child{
    border-bottom:none;
}

.warning-card{
    border-color:rgba(255,48,48,.35);
}

.warning-card:hover{
    border-color:var(--accent-red);
    box-shadow:
        0 0 40px rgba(255,48,48,.3),
        0 20px 60px rgba(0,0,0,.5);
}

.vehicle-ban{
    border-color:rgba(255,215,0,.25);
}

.vehicle-ban:hover{
    border-color:var(--accent-gold);
    box-shadow:
        0 0 35px rgba(255,215,0,.25),
        0 20px 60px rgba(0,0,0,.5);
}

.priority-card{
    border-color:rgba(0,212,255,.25);
}

.priority-card:hover{
    border-color:var(--accent-blue);
    box-shadow:
        0 0 35px rgba(0,212,255,.25),
        0 20px 60px rgba(0,0,0,.5);
}

.highlight-red{
    color:var(--accent-red);
    font-weight:700;
}

.highlight-blue{
    color:var(--accent-blue);
    font-weight:700;
}

.highlight-gold{
    color:var(--accent-gold);
    font-weight:700;
}

.notice{
    padding:20px;
    margin-top:20px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    color:var(--text-secondary);
    line-height:1.8;
}

.notice strong{
    color:white;
}

.banned-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.banned-grid .card{
    min-height:100%;
}

@media(max-width:768px){

    .rules-list li{
        padding:12px 0;
        font-size:.95rem;
    }

    .notice{
        padding:18px;
    }

    .banned-grid{
        grid-template-columns:1fr;
    }
}

