/* =========================================================
   GLOBAL
=========================================================*/

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

body {
    font-family: 'Inter', sans-serif;
    background: #0b0e19;
    color: #fff;
    overflow-x: hidden;
}

h1, h2 {
    font-weight: 800;
}

section {
    padding: 100px 8%;
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 29, 0.7);
    backdrop-filter: blur(14px);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
}

.nav-logo {
    width: 80px;
}

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

.nav-links a {
    color: #cfd6ff;
    text-decoration: none;
    font-weight: 500;
    transition: .2s;
}

.nav-links a.active,
.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4a9eff, #7d55ff);
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.webp') center/cover no-repeat;
    opacity: .32;
    filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
}

.hero-title {
    font-size: 70px;
}

.hero-title span {
    background: linear-gradient(135deg, #4a9eff, #7d55ff);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-sub {
    margin-top: 16px;
    font-size: 20px;
    color: #d4ddff;
}

.hero-btn {
    margin-top: 26px;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 40px;
    background: linear-gradient(135deg, #4a9eff, #7d55ff);
    text-decoration: none;
    color: white;
    font-weight: 700;
}

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

.features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 26px;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    padding: 26px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
}

/* =========================================================
   NEWS GRID
=========================================================*/

.news-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 26px;
}

.news-card {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
}

.news-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background: #4a9eff;
    text-decoration: none;
    color: white;
    border-radius: 8px;
}

/* =========================================================
   JOIN PAGE
=========================================================*/

.join-box {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
}

.join-step {
    margin-bottom: 26px;
}

/* =========================================================
   STAFF
=========================================================*/

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 30px;
}

.staff-card {
    background: rgba(255,255,255,0.06);
    padding: 22px;
    border-radius: 18px;
    text-align: center;
}

.staff-card img {
    width: 110px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* =========================================================
   RULES
=========================================================*/

.rule-block {
    margin-bottom: 20px;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

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

.footer {
    padding: 40px 6%;
    text-align: center;
    background: #050814;
    margin-top: 80px;
}

.footer img {
    width: 80px;
    opacity: .8;
}
