```css
/* =========================
   TBV ESPORTS - STYLE.CSS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#00d4ff;
    --secondary:#3b82f6;
    --dark:#070b14;
    --card:#101826;
    --text:#d7e3f1;
}

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--dark);
    color:white;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    position:relative;
}

/* =========================
   BACKGROUND GLOW EFFECTS
========================= */

body::before{
    content:'';
    position:fixed;
    top:-150px;
    left:-150px;
    width:500px;
    height:500px;
    background:#00d4ff25;
    filter:blur(140px);
    z-index:-2;
}

body::after{
    content:'';
    position:fixed;
    bottom:-150px;
    right:-150px;
    width:500px;
    height:500px;
    background:#2563eb25;
    filter:blur(140px);
    z-index:-2;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(7,11,20,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.05);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:80px;
    width:auto;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:var(--primary);
}

/* =========================
   HERO
========================= */

.hero{
    padding:120px 0;
    text-align:center;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    border:1px solid rgba(0,212,255,.3);
    background:rgba(0,212,255,.08);
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.hero h1{
    font-size:clamp(3rem,7vw,6rem);
    font-weight:800;
    margin-top:20px;
    line-height:1.1;
    font-family:'Orbitron',sans-serif;
}

.hero h1 span{
    background:linear-gradient(
        90deg,
        var(--primary),
        #4facfe
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    max-width:800px;
    margin:25px auto;
    color:#b6c3d3;
    line-height:1.8;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:2.5rem;
    font-family:'Orbitron',sans-serif;
}

/* =========================
   STATS
========================= */

.stats-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.stat-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:30px;
    border-radius:20px;
    text-align:center;
}

.stat-card h2{
    color:var(--primary);
    font-size:2.5rem;
}

.stat-card p{
    color:#c1cedd;
}

/* =========================
   CARDS
========================= */

.feature-card,
.player-card,
.achievement-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:25px;
    transition:.35s;
}

.feature-card:hover,
.player-card:hover,
.achievement-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,212,255,.4);
    box-shadow:0 15px 40px rgba(0,212,255,.12);
}

/* =========================
   GRIDS
========================= */

.feature-grid,
.players-grid,
.achievement-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
    text-align:center;
    padding:70px 30px;
}

.cta-section h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    color:#b6c3d3;
    line-height:1.8;
    margin-bottom:25px;
}

/* =========================
   FOOTER
========================= */

footer{
    margin-top:80px;
    background:#111111;
    border-top:1px solid rgba(255,255,255,.05);
    text-align:center;
    padding:30px;
}

footer p{
    color:#90a4b8;
}

/* =========================
   MOBILE MENU
========================= */

@media(max-width:768px){

    header .container{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        padding:80px 0;
    }

    .hero h1{
        font-size:3rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .cta-section h2{
        font-size:2rem;
    }

    .logo img{
        height:65px;
    }
}
```
