@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Unbounded:wght@600;700;900&display=swap');

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

html { scroll-behavior: smooth; }

body {
    background: #050505;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.font-display { font-family: 'Unbounded', sans-serif; letter-spacing: -0.03em; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: #00f2fe; color: #050505; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0c; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #00f2fe, #fe0979); border-radius: 8px; }

/* =================== LAYOUT =================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

section { position: relative; }

/* =================== NAV =================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(0,0,0,0.7); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0,242,254,0.6)); }
.nav-logo-text .name { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 16px; letter-spacing: -0.03em; }
.nav-logo-text .sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: #00f2fe; }

.nav-links { display: none; list-style: none; align-items: center; gap: 40px; }
.nav-links a {
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(255,255,255,0.7); transition: color 0.3s;
}
.nav-links a:hover { color: #00f2fe; }

.nav-cta {
    display: none; padding: 10px 20px; border-radius: 9999px;
    background: #00f2fe; color: #000; font-weight: 600;
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
    transition: all 0.3s;
}
.nav-cta:hover { background: #fff; box-shadow: 0 0 24px rgba(0,242,254,0.5); }

.nav-toggle { display: flex; padding: 8px; }
.nav-toggle svg { width: 22px; height: 22px; }

.nav-mobile {
    display: none; border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.9); backdrop-filter: blur(16px);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 24px; }
.nav-mobile li { padding: 12px 0; }
.nav-mobile a { font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.8); }

@media (min-width: 768px) {
    .nav-links, .nav-cta { display: inline-flex; }
    .nav-toggle { display: none; }
}

/* =================== HERO =================== */
.hero {
    position: relative; min-height: 100vh; padding-top: 80px;
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    animation: slowZoom 24s ease-in-out infinite;
}
@keyframes slowZoom {
    0%,100% { transform: scale(1.05); } 50% { transform: scale(1.12); }
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.7) 50%, #050505); }
.hero-grid {
    position: absolute; inset: 0; opacity: 0.5;
    background-image:
        linear-gradient(rgba(0,242,254,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,242,254,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
}
.hero-orb1 { position: absolute; top: -80px; left: -80px; width: 380px; height: 380px; border-radius: 50%; background: rgba(0,242,254,0.2); filter: blur(120px); }
.hero-orb2 { position: absolute; bottom: 0; right: 0; width: 500px; height: 500px; border-radius: 50%; background: rgba(254,9,121,0.2); filter: blur(140px); }

.hero-content { position: relative; z-index: 10; max-width: 900px; margin-right: auto; }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 9999px;
    border: 1px solid rgba(0,242,254,0.4); background: rgba(0,242,254,0.05);
    backdrop-filter: blur(4px); margin-bottom: 32px;
}
.badge .dot {
    width: 8px; height: 8px; border-radius: 50%; background: #00f2fe; position: relative;
}
.badge .dot::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%; background: #00f2fe; animation: ping 1.5s ease-out infinite;
}
@keyframes ping { 0% { opacity: 0.75; transform: scale(1); } 100% { opacity: 0; transform: scale(2.5); } }
.badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; color: #00f2fe; font-weight: 500; }

.hero h1 {
    font-family: 'Unbounded', sans-serif; font-weight: 900;
    letter-spacing: -0.03em; line-height: 0.9;
    font-size: 44px; margin-bottom: 24px;
}
.hero h1 .gradient {
    background: linear-gradient(90deg, #00f2fe, #ffffff, #fe0979);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 640px) { .hero h1 { font-size: 64px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 88px; } }

.hero p {
    font-size: 15px; color: rgba(255,255,255,0.7); max-width: 600px;
    margin-bottom: 40px; font-weight: 300; line-height: 1.6;
}
@media (min-width: 640px) { .hero p { font-size: 18px; } }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.btn-primary, .btn-secondary {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 24px; border-radius: 9999px;
    font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
    transition: all 0.3s; cursor: pointer;
}
.btn-primary { background: #00f2fe; color: #000; }
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 0 24px rgba(0,242,254,0.5); }

.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: #fe0979; background: rgba(254,9,121,0.1); }

@media (min-width: 640px) {
    .btn-primary, .btn-secondary { padding: 16px 28px; font-size: 13px; }
}

.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }
.stat .value { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 28px; }
.stat .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.5); margin-top: 4px; }
@media (min-width: 640px) { .stat .value { font-size: 32px; } }

.hero-ip { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.6); font-size: 13px; font-family: monospace; }
.hero-ip svg { color: #00f2fe; }

.hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    width: 1px; height: 60px; background: linear-gradient(180deg, transparent, #00f2fe, transparent);
}

/* =================== MARQUEE =================== */
.marquee {
    position: relative; border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.4); padding: 20px 0; overflow: hidden;
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 40px; padding: 0 24px; }
.marquee-item span:first-child { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: -0.02em; }
.marquee-item .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.marquee-item .cyan { color: #00f2fe; }
.marquee-item .magenta { color: #fe0979; }

/* =================== SECTION HEADER =================== */
.section { padding: 96px 0; border-top: 1px solid rgba(255,255,255,0.05); }
@media (min-width: 640px) { .section { padding: 128px 0; } }

.section-header { max-width: 720px; margin-bottom: 56px; }
.overline { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.overline .line { width: 40px; height: 1px; background: #00f2fe; }
.overline.magenta .line { background: #fe0979; }
.overline span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.4em; color: #00f2fe; font-weight: 500; }
.overline.magenta span { color: #fe0979; }
.overline.purple .line { background: #5865F2; }
.overline.purple span { color: #5865F2; }

.section h2 {
    font-family: 'Unbounded', sans-serif; font-weight: 900; letter-spacing: -0.03em;
    font-size: 32px; line-height: 0.95; margin-bottom: 20px;
}
@media (min-width: 640px) { .section h2 { font-size: 48px; } }
@media (min-width: 1024px) { .section h2 { font-size: 56px; } }

.section h2 .cyan { color: #00f2fe; }
.section h2 .magenta { color: #fe0979; }
.section h2 .gradient {
    background: linear-gradient(90deg, #00f2fe, #fe0979);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
@media (min-width: 640px) { .section-desc { font-size: 16px; } }

/* =================== SERVER STATUS =================== */
.status-section { padding: 64px 0; }
.status-card {
    position: relative; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #0A0A0C, #0F0F12); padding: 32px;
    overflow: hidden;
}
.status-card::before, .status-card::after {
    content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%; filter: blur(100px);
}
.status-card::before { top: -80px; right: -80px; background: rgba(0,242,254,0.1); }
.status-card::after { bottom: -80px; left: -80px; background: rgba(254,9,121,0.1); }

.status-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (min-width: 768px) { .status-grid { grid-template-columns: repeat(4, 1fr); } }

.status-item .head { display: flex; align-items: center; gap: 8px; }
.status-item .head svg { width: 14px; height: 14px; }
.status-item .head label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.4); }
.status-item .val {
    font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 24px; letter-spacing: -0.02em;
    margin-top: 8px;
}
@media (min-width: 640px) { .status-item .val { font-size: 30px; } }
.status-item.cyan .val { color: #00f2fe; text-shadow: 0 0 18px rgba(0,242,254,0.33); }
.status-item.green .val { color: #22c55e; text-shadow: 0 0 18px rgba(34,197,94,0.33); }
.status-item.magenta .val { color: #fe0979; text-shadow: 0 0 18px rgba(254,9,121,0.33); }
.status-item.cyan .head svg { color: #00f2fe; }
.status-item.green .head svg { color: #22c55e; }
.status-item.magenta .head svg { color: #fe0979; }
.live-dot { display: inline-block; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; position: relative; margin-left: 4px; }
.live-dot::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #22c55e; animation: ping 1.5s ease-out infinite; }

/* =================== FEATURES BENTO =================== */
.features-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
    position: relative; padding: 24px; border-radius: 16px;
    background: #0F0F12; border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; transition: all 0.5s;
}
@media (min-width: 640px) { .feature-card { padding: 32px; } }
.feature-card.wide { grid-column: span 1; }
@media (min-width: 768px) { .feature-card.wide { grid-column: span 2; } }

.feature-card:hover { border-color: rgba(0,242,254,0.5); }
.feature-card.magenta:hover { border-color: rgba(254,9,121,0.5); }

.feature-icon {
    display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
    border-radius: 12px; border: 1px solid rgba(0,242,254,0.33); background: rgba(0,242,254,0.07);
    color: #00f2fe; margin-bottom: 20px;
    filter: drop-shadow(0 0 12px rgba(0,242,254,0.33));
    transition: transform 0.5s;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card.magenta .feature-icon {
    border-color: rgba(254,9,121,0.33); background: rgba(254,9,121,0.07); color: #fe0979;
    filter: drop-shadow(0 0 12px rgba(254,9,121,0.33));
}

.feature-card h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 8px; letter-spacing: -0.02em; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }

/* =================== GALLERY =================== */
.gallery-grid {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    grid-auto-rows: 220px;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(12, 1fr); gap: 20px; grid-auto-rows: 260px; }
}

.gallery-item {
    position: relative; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.5s;
}
.gallery-item:hover { border-color: rgba(0,242,254,0.4); }
.gallery-item .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1s; }
.gallery-item:hover .bg { transform: scale(1.1); }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(0deg, #000, rgba(0,0,0,0.3), transparent); opacity: 0.9; }
.gallery-item .info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.gallery-item .tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em; color: #00f2fe; margin-bottom: 8px; }
.gallery-item .title { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 22px; }

.g-1 { grid-column: span 1; }
.g-2 { grid-column: span 1; }
.g-3 { grid-column: span 1; }
.g-4 { grid-column: span 1; }
@media (min-width: 768px) {
    .g-1 { grid-column: span 7; grid-row: span 2; }
    .g-2 { grid-column: span 5; }
    .g-3 { grid-column: span 5; }
    .g-4 { grid-column: span 12; }
}

/* =================== HOW TO JOIN =================== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
    position: relative; padding: 28px; border-radius: 16px;
    background: #0A0A0C; border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.5s; overflow: hidden;
}
.step-card:hover { border-color: rgba(0,242,254,0.4); }
.step-card .head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.step-card .num { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 44px; color: rgba(255,255,255,0.1); transition: color 0.5s; }
.step-card:hover .num { color: rgba(0,242,254,0.3); }
.step-card .icon {
    width: 44px; height: 44px; border-radius: 12px;
    border: 1px solid rgba(0,242,254,0.4); background: rgba(0,242,254,0.1);
    color: #00f2fe; display: inline-flex; align-items: center; justify-content: center;
    filter: drop-shadow(0 0 12px rgba(0,242,254,0.33));
}
.step-card h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }

/* =================== EVENTS =================== */
.events-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .events-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.event-card {
    position: relative; display: flex; align-items: center; gap: 20px;
    padding: 20px; border-radius: 16px; background: #0A0A0C;
    border: 1px solid rgba(255,255,255,0.05); overflow: hidden;
    transition: border-color 0.5s;
}
@media (min-width: 640px) { .event-card { padding: 24px; gap: 24px; } }
.event-card:hover { border-color: rgba(0,242,254,0.4); }
.event-card .stripe {
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    box-shadow: 0 0 16px currentColor;
}
.event-card.cyan .stripe { background: #00f2fe; color: #00f2fe; }
.event-card.magenta .stripe { background: #fe0979; color: #fe0979; }

.event-date {
    flex-shrink: 0; width: 64px; height: 64px; border-radius: 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid; padding: 4px;
}
@media (min-width: 640px) { .event-date { width: 80px; height: 80px; } }
.event-card.cyan .event-date { border-color: rgba(0,242,254,0.33); background: rgba(0,242,254,0.06); }
.event-card.magenta .event-date { border-color: rgba(254,9,121,0.33); background: rgba(254,9,121,0.06); }
.event-date .day { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 24px; line-height: 1; }
@media (min-width: 640px) { .event-date .day { font-size: 30px; } }
.event-card.cyan .event-date .day { color: #00f2fe; text-shadow: 0 0 12px rgba(0,242,254,0.33); }
.event-card.magenta .event-date .day { color: #fe0979; text-shadow: 0 0 12px rgba(254,9,121,0.33); }
.event-date .month { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-top: 4px; }

.event-body { flex: 1; min-width: 0; }
.event-body .tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 6px; display: inline-flex; align-items: center; gap: 6px; }
.event-card.cyan .event-body .tag { color: #00f2fe; }
.event-card.magenta .event-body .tag { color: #fe0979; }
.event-body h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
@media (min-width: 640px) { .event-body h3 { font-size: 18px; } }
.event-body .meta { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 12px; color: rgba(255,255,255,0.5); }
.event-body .meta span { display: inline-flex; align-items: center; gap: 6px; }

/* =================== TEAM =================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.team-card {
    position: relative; aspect-ratio: 3/4; border-radius: 16px;
    overflow: hidden; background: #0A0A0C; border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.5s;
}
.team-card:hover { border-color: rgba(0,242,254,0.4); }
.team-card .glow { position: absolute; inset: 0; opacity: 0.6; transition: opacity 0.5s; }
.team-card:hover .glow { opacity: 1; }
.team-card.cyan .glow { background: radial-gradient(circle at 50% 30%, rgba(0,242,254,0.13), transparent 60%); }
.team-card.magenta .glow { background: radial-gradient(circle at 50% 30%, rgba(254,9,121,0.13), transparent 60%); }
.team-card .grid-bg {
    position: absolute; inset: 0; opacity: 0.3;
    background-image:
        linear-gradient(rgba(0,242,254,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,242,254,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
}
.team-card .inner { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; }
.team-card .avatar {
    width: 80px; height: 80px; border-radius: 50%; border: 2px solid;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: transform 0.5s;
}
@media (min-width: 640px) { .team-card .avatar { width: 96px; height: 96px; } }
.team-card:hover .avatar { transform: scale(1.1); }
.team-card.cyan .avatar { color: #00f2fe; border-color: #00f2fe; background: rgba(0,242,254,0.07); box-shadow: 0 0 24px rgba(0,242,254,0.33); }
.team-card.magenta .avatar { color: #fe0979; border-color: #fe0979; background: rgba(254,9,121,0.07); box-shadow: 0 0 24px rgba(254,9,121,0.33); }
.team-card .tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em; margin-bottom: 8px; }
.team-card.cyan .tag { color: #00f2fe; }
.team-card.magenta .tag { color: #fe0979; }
.team-card .name { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 4px; }
@media (min-width: 640px) { .team-card .name { font-size: 22px; } }
.team-card .role { font-size: 13px; color: rgba(255,255,255,0.55); }

/* =================== STREAMERS =================== */
.streamers-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .streamers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .streamers-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.streamer-card {
    position: relative; padding: 24px; border-radius: 16px;
    background: #0A0A0C; border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.5s; overflow: hidden; display: block;
}
.streamer-card:hover { border-color: rgba(0,242,254,0.4); }
.streamer-card .blob { position: absolute; top: -48px; right: -48px; width: 128px; height: 128px; border-radius: 50%; opacity: 0.3; filter: blur(40px); transition: opacity 0.5s; }
.streamer-card:hover .blob { opacity: 0.6; }
.streamer-card.twitch .blob { background: #a855f7; }
.streamer-card.youtube .blob { background: #ef4444; }

.streamer-card .top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; position: relative; z-index: 1; }
.streamer-card .pf-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
}
.streamer-card.twitch .pf-icon { color: #a855f7; background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.33); filter: drop-shadow(0 0 10px rgba(168,85,247,0.33)); }
.streamer-card.youtube .pf-icon { color: #ef4444; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.33); filter: drop-shadow(0 0 10px rgba(239,68,68,0.33)); }

.streamer-card .ext { width: 14px; height: 14px; color: rgba(255,255,255,0.3); transition: all 0.3s; }
.streamer-card:hover .ext { color: #00f2fe; transform: rotate(45deg); }
.streamer-card .platform { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.streamer-card .name { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.streamer-card .bio { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; margin-bottom: 20px; min-height: 36px; }
.streamer-card .meta { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); }
.streamer-card .meta .viewers { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.6); font-family: monospace; }
.streamer-card .meta .status { font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.streamer-card .status.live { color: #22c55e; }
.streamer-card .status.live::before { content: ''; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; position: relative; }
.streamer-card.youtube .status { color: #ef4444; }
.streamer-card.twitch .status:not(.live) { color: #a855f7; }

/* =================== ACCORDION =================== */
.rules-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .rules-layout { grid-template-columns: 4fr 8fr; gap: 56px; } }
.rules-aside { position: sticky; top: 120px; align-self: start; }
@media (max-width: 1023px) { .rules-aside { position: static; } }

.acc-list { display: flex; flex-direction: column; gap: 12px; }
.acc-item {
    border: 1px solid rgba(255,255,255,0.05); background: #0A0A0C;
    border-radius: 12px; padding: 0 20px;
    transition: border-color 0.3s;
}
@media (min-width: 640px) { .acc-item { padding: 0 24px; } }
.acc-item.open, .acc-item:hover { border-color: rgba(0,242,254,0.3); }
.acc-item.magenta-hover:hover { border-color: rgba(254,9,121,0.3); }
.acc-trigger {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 20px 0; text-align: left;
}
.acc-trigger .left { display: flex; align-items: center; gap: 16px; }
@media (min-width: 640px) { .acc-trigger .left { gap: 24px; } }
.acc-trigger .num {
    font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 20px;
    color: #00f2fe; text-shadow: 0 0 12px rgba(0,242,254,0.6);
}
@media (min-width: 640px) { .acc-trigger .num { font-size: 24px; } }
.acc-trigger .ttl { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 15px; }
@media (min-width: 640px) { .acc-trigger .ttl { font-size: 18px; } }
.acc-chevron { width: 18px; height: 18px; transition: transform 0.3s; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 300; line-height: 1.7;
}
.acc-item.open .acc-content { max-height: 400px; padding: 0 0 24px 48px; }
.acc-content.no-indent { padding-left: 0; }
.acc-item.open .acc-content.no-indent { padding: 0 0 24px 0; }

/* FAQ uses no-indent and magenta */
.faq-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 0; text-align: left; }
.faq-trigger .q { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 15px; padding-right: 16px; }
@media (min-width: 640px) { .faq-trigger .q { font-size: 17px; } }

/* =================== DISCORD WIDGET =================== */
.dw-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .dw-layout { grid-template-columns: 1fr 1fr; gap: 56px; } }
.dw-panel {
    position: relative; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #0A0A0C, #0F0F12);
    overflow: hidden;
}
.dw-panel .header {
    padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: space-between;
}
.dw-panel .header .left { display: flex; align-items: center; gap: 12px; }
.dw-icon {
    width: 40px; height: 40px; background: #5865F2; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 18px rgba(88,101,242,0.5);
}
.dw-icon svg { color: #fff; width: 18px; height: 18px; }
.dw-name { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 14px; }
.dw-sub { font-size: 10px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.dw-sub .green-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; }
.dw-live { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: #5865F2; font-weight: 500; }
.dw-channels { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.dw-channel {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 12px; border-radius: 6px; transition: background 0.2s;
}
.dw-channel:hover { background: rgba(255,255,255,0.05); }
.dw-channel .l { display: flex; align-items: center; gap: 10px; min-width: 0; }
.dw-channel .l .h { color: rgba(255,255,255,0.4); font-size: 16px; line-height: 1; }
.dw-channel .l .h svg { width: 14px; height: 14px; }
.dw-channel .l .name { font-size: 13px; color: rgba(255,255,255,0.7); }
.dw-channel:hover .l .name { color: #fff; }
.dw-channel .r { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.4); font-family: monospace; }
.dw-channel .r svg { width: 11px; height: 11px; }

.btn-discord {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 24px; border-radius: 9999px;
    background: #5865F2; color: #fff;
    font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em;
    box-shadow: 0 0 24px rgba(88,101,242,0.4);
    transition: all 0.3s;
}
.btn-discord:hover { background: #4752c4; transform: scale(1.03); }

/* =================== CTA SECTION =================== */
.cta-section {
    position: relative; padding: 96px 0; overflow: hidden;
}
@media (min-width: 640px) { .cta-section { padding: 128px 0; } }
.cta-section .bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-section .bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.cta-section .grid-overlay {
    position: absolute; inset: 0; opacity: 0.3;
    background-image:
        linear-gradient(rgba(0,242,254,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,242,254,0.06) 1px, transparent 1px);
    background-size: 56px 56px;
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.cta-content h2 { font-family: 'Unbounded', sans-serif; font-weight: 900; letter-spacing: -0.03em; line-height: 0.92; font-size: 36px; margin-bottom: 24px; }
@media (min-width: 640px) { .cta-content h2 { font-size: 56px; } }
@media (min-width: 1024px) { .cta-content h2 { font-size: 72px; } }
.cta-content p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 40px; font-weight: 300; line-height: 1.6; }
@media (min-width: 640px) { .cta-content p { font-size: 18px; } }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.btn-pulse { animation: pulseGlow 2.8s ease-in-out infinite; }
@keyframes pulseGlow {
    0%,100% { box-shadow: 0 0 18px rgba(0,242,254,0.45), 0 0 36px rgba(0,242,254,0.15); }
    50% { box-shadow: 0 0 28px rgba(0,242,254,0.7), 0 0 60px rgba(0,242,254,0.3); }
}

/* =================== FOOTER =================== */
footer { background: #030303; border-top: 1px solid rgba(255,255,255,0.1); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand { display: flex; flex-direction: column; }
.footer-brand .top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0,242,254,0.6)); }
.footer-brand .name { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 16px; letter-spacing: -0.03em; }
.footer-brand .sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: #00f2fe; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 420px; font-weight: 300; }

.footer-col .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-col a:hover { color: #00f2fe; }

.socials { display: flex; gap: 12px; }
.socials a {
    width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7); transition: all 0.3s;
}
.socials a:hover { border-color: #00f2fe; color: #00f2fe; }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
    font-size: 12px; color: rgba(255,255,255,0.4);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom .ip { font-family: monospace; }

/* =================== TOAST =================== */
.toast {
    position: fixed; bottom: 24px; right: 24px; z-index: 100;
    background: #0F0F12; border: 1px solid rgba(0,242,254,0.4);
    color: #fff; padding: 14px 20px; border-radius: 12px;
    box-shadow: 0 0 24px rgba(0,242,254,0.3);
    transform: translateY(120%); opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    font-size: 14px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* =================== REVEAL ANIMATION =================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =================== UTILS =================== */
.flex-between { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
@media (max-width: 767px) { .flex-between { flex-direction: column; align-items: flex-start; } }

/* SVG sizes */
svg { width: 1em; height: 1em; }
.btn-primary svg, .btn-secondary svg, .btn-discord svg { width: 18px; height: 18px; }
.feature-icon svg, .step-card .icon svg, .team-card .avatar svg { width: 22px; height: 22px; }
.event-card .stripe { width: 4px; }
