:root {
    --bg-color: #030306;
    --accent: #4d59ff;
    --accent-purple: #9d31ff;
    --text: #ffffff;
    --text-dim: #9494b8;
    --glass: rgba(255, 255, 255, 0.03);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-decoration: none;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(3, 3, 6, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    min-height: 80vh;
}

.hero-content {
    max-width: 600px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(77, 89, 255, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(77, 89, 255, 0.2);
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background: rgba(3, 3, 6, 0.8);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.youtube {
    width: 45.4415274463px;
    height: 32px;
}

.instagram {
    width: 38px;
    height: 39.02625298329px;
    margin-left: 10px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

h1 span {
    background: linear-gradient(90deg, var(--accent), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(77, 89, 255, 0.4);
}

/* ── Hero Visual ─────────────────────────────────────────── */
.hero-visual {
    position: relative;
}

.main-img {
    width: 420px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
    opacity: 0.15;
    z-index: 1;
}

/* ── Stats Section ───────────────────────────────────────── */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 60px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.stat-card p {
    color: var(--text-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Sponsors ────────────────────────────────────────────── */
.sponsors-grid {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.sponsors-grid::-webkit-scrollbar { height: 10px; }
.sponsors-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.sponsors-grid:focus { outline: none; }

.sponsor {
    flex: 0 0 86%;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor figure {
    width: 100%;
    max-width: 480px;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sponsor img {
    display: block;
    margin: 0 auto 8px;
    max-width: 100%;
    height: auto;
}

.sponsor figcaption {
    color: var(--text-dim);
    font-size: 0.95rem;
}

@media (min-width: 800px) {
    .sponsor { flex: 0 0 40%; }
}

@media (min-width: 1200px) {
    .sponsor { flex: 0 0 28%; }
    .sponsors-grid { justify-content: flex-start; }
}

/* ── Dashboard ───────────────────────────────────────────── */
.dashboard {
    padding: 60px 8%;
}

.dash-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

#aboutustitle {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

#aboutus {
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}

.glass {
    background: var(--glass);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.qs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.qs-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.qs-item span {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.qs-item p {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 6px;
}

#events-list,
#matches-list,
#awards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item,
.match-item,
.award-item {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}