﻿:root {
  color-scheme: dark;
  --bg: #070a10;
  --panel: rgba(17, 24, 39, .74);
  --panel-strong: rgba(13, 19, 30, .94);
  --line: rgba(148, 163, 184, .22);
  --text: #f8fafc;
  --muted: #aab6c8;
  --green: #34d399;
  --yellow: #facc15;
  --red: #fb7185;
  --blue: #60a5fa;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(96,165,250,.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(52,211,153,.13), transparent 26%),
    linear-gradient(135deg, #06080d 0%, #0c111c 45%, #090b11 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.brand { display: inline-flex; gap: 12px; align-items: center; font-weight: 800; letter-spacing: 0; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--blue), var(--green)); color: #041016; }
.nav-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a, .button { border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; background: rgba(15,23,42,.52); color: var(--muted); font-weight: 700; }
.button.primary { background: var(--green); color: #041016; border-color: transparent; }
.hero { min-height: calc(100vh - 98px); display: grid; grid-template-columns: minmax(0, 1.15fr) 380px; align-items: center; gap: 34px; padding: 36px 0 76px; }
.eyebrow { margin: 0 0 12px; color: var(--green); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
h1 { margin: 0; font-size: clamp(58px, 11vw, 132px); line-height: .86; letter-spacing: 0; }
h2 { margin: 0; font-size: 28px; letter-spacing: 0; }
h3 { margin: 0 0 8px; font-size: 18px; }
.lead { max-width: 690px; margin: 24px 0 0; color: #dce6f7; font-size: 21px; line-height: 1.55; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.profile-card, .live-panel, .community-panel, .social-card, .collab-grid article { border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(18px); box-shadow: 0 24px 90px rgba(0,0,0,.32); border-radius: 8px; }
.profile-card { padding: 24px; display: grid; gap: 22px; }
.avatar-wrap { position: relative; width: 122px; height: 122px; }
.avatar-wrap img, .avatar-fallback { width: 122px; height: 122px; border-radius: 12px; border: 1px solid rgba(255,255,255,.2); object-fit: cover; }
.avatar-fallback { display: grid; place-items: center; font-size: 54px; font-weight: 900; background: linear-gradient(135deg, #1f2937, #0f172a); }
.status-dot { position: absolute; right: -3px; bottom: -3px; width: 26px; height: 26px; border-radius: 50%; border: 5px solid #0b1019; background: #64748b; }
.status-dot.online { background: var(--green); }
.status-dot.idle { background: var(--yellow); }
.status-dot.dnd { background: var(--red); }
.profile-card p, .hint, .collab-grid p, .community-panel p { color: var(--muted); line-height: 1.55; margin: 8px 0 0; }
.mini-grid, .stream-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini-grid div, .stream-meta div { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(2,6,23,.36); }
.mini-grid span, .stream-meta span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }
.mini-grid strong, .stream-meta strong { display: block; margin-top: 6px; font-size: 20px; }
.status-section { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 18px; margin-top: -34px; }
.live-panel, .community-panel { padding: 24px; }
.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.badge { padding: 7px 10px; border-radius: 999px; font-size: 12px; font-weight: 900; background: rgba(148,163,184,.18); color: var(--muted); }
.badge.live { background: rgba(52,211,153,.18); color: var(--green); }
.badge.offline { background: rgba(251,113,133,.18); color: var(--red); }
.stream-meta { grid-template-columns: repeat(3, 1fr); margin-top: 20px; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.pill-row span { border: 1px solid var(--line); background: rgba(96,165,250,.11); padding: 8px 10px; border-radius: 999px; color: #dbeafe; font-size: 13px; font-weight: 700; }
.section { padding: 84px 0 0; }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 18px; }
.social-grid, .collab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.social-card { padding: 20px; transition: transform .18s ease, border-color .18s ease; }
.social-card:hover { transform: translateY(-2px); border-color: rgba(52,211,153,.6); }
.social-card span { color: var(--muted); font-size: 13px; font-weight: 800; }
.social-card strong { display: block; margin-top: 10px; font-size: 18px; word-break: break-word; }
.collab-grid article { padding: 22px; background: var(--panel-strong); }
.collaborations { padding-bottom: 88px; }
@media (max-width: 880px) {
  .hero, .status-section, .social-grid, .collab-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 26px; }
  .status-section { margin-top: 0; }
  .stream-meta { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
