:root {
    --bg: #05060a;
    --bg-alt: #0b0d14;
    --accent: #00ffaa;
    --accent-soft: #4df2c9;
    --text: #f5f5f5;
    --muted: #9a9a9a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #151a2b 0, #05060a 55%, #020308 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(5,6,10,0.96), rgba(5,6,10,0.85), transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}
.nav-links {
    display: flex;
    gap: 22px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.nav-links a {
    position: relative;
    padding-bottom: 4px;
    color: var(--muted);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.18s ease-out;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* HERO */
.hero {
    padding: 80px 20px 40px;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 40px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 10px;
}
.hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
}
.hero-title span {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(0,255,170,0.45);
}
.hero-sub {
    color: var(--muted);
    font-size: 0.98rem;
    max-width: 420px;
    margin-bottom: 22px;
}
@media (max-width: 900px) {
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(8,10,18,0.8);
    color: var(--muted);
}
.tag.accent {
    border-color: rgba(0,255,170,0.5);
    color: var(--accent-soft);
    background: radial-gradient(circle at top left, rgba(0,255,170,0.18), rgba(8,10,18,0.9));
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #4df2ff);
    color: #020308;
    border: none;
    box-shadow: 0 0 24px rgba(0,255,170,0.4);
}
.btn-primary span.icon {
    font-size: 1.1rem;
}

/* HERO CARD */
.hero-card {
    border-radius: 22px;
    background: radial-gradient(circle at top left, #1b2338, #05060a);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 60px rgba(0,0,0,0.7);
    padding: 18px 18px 16px;
    position: relative;
    overflow: hidden;
}
.hero-card-main {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #05060a;
    min-height: 220px;
}

/* HERO PREVIEW */
#heroStreamerBg {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.85);
    transition: background-image 0.4s ease-out;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--muted);
}
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255,0,80,0.12);
    color: #ff5b8a;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #ff5b8a;
    box-shadow: 0 0 10px rgba(255,91,138,0.8);
}

.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,6,10,0.9), rgba(5,6,10,0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}
.hero-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.hero-card-meta {
    font-size: 0.8rem;
    color: var(--muted);
}

/* SECTIONS */
.section {
    padding: 40px 20px 60px;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 8px;
}
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

/* STATUS CARD */
.status-card {
    border-radius: 18px;
    background: radial-gradient(circle at top left, #151a2b, #05060a);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 18px;
}
.status-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
.status-label {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.status-count {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 18px rgba(0,255,170,0.4);
}
.status-meta {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--muted);
}

/* STREAMER GRID */
.streamer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 10px;
}
.streamer-card {
    border-radius: 16px;
    background: radial-gradient(circle at top left, #151a2b, #05060a);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}
.streamer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.7);
    border-color: rgba(0,255,170,0.4);
}
.streamer-thumb {
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
}
.streamer-info {
    padding: 10px 12px 12px;
}
.streamer-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.streamer-meta {
    font-size: 0.8rem;
    color: var(--muted);
}
.streamer-platform {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 6px;
    color: var(--accent-soft);
}

/* FOOTER */
footer {
    margin-top: auto;
    padding: 24px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: radial-gradient(circle at bottom, #151a2b 0, #05060a 45%, #020308 100%);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--muted);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-links a {
    opacity: 0.8;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--accent-soft);
}

/* COPILOT SIGNATURE */
.copilot-signature {
    text-align: center;
    font-size: 12px;
    opacity: 0.55;
    margin-top: 10px;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}