 :root {
    --bg-1: #f7f1e8;
    --bg-2: #e7d7c3;
    --ink: #1f2428;
    --ink-muted: #4b5156;
    --panel: #11161a;
    --panel-soft: #1b2126;
    --accent: #d34b35;
    --accent-strong: #ff7a48;
    --accent-2: #1f9c89;
    --line: rgba(31, 36, 40, 0.15);
    --shadow: 0 24px 60px rgba(16, 19, 22, 0.22);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Space Grotesk", sans-serif;
    color: var(--ink);
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
    position: relative;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: -20% -10%;
    background:
      radial-gradient(circle at 20% 20%, rgba(211, 75, 53, 0.25), transparent 55%),
      radial-gradient(circle at 80% 0%, rgba(31, 156, 137, 0.22), transparent 60%),
      radial-gradient(circle at 50% 90%, rgba(255, 122, 72, 0.2), transparent 55%);
    z-index: -2;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.04) 1px,
      transparent 1px,
      transparent 6px
    );
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
  }

  .page {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    background: #121618;
    color: #f6f0e7;
    padding: 8px 14px;
    border-radius: 999px;
    width: fit-content;
  }

  h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin-top: 8px;
    max-width: 620px;
  }

  .lead {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 520px;
  }

  .hero-actions {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn {
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s
  ease;
  }

  .btn.primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 12px 24px rgba(211, 75, 53, 0.35);
  }

  .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(211, 75, 53, 0.4);
  }

  .btn.ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
  }

  .btn.ghost:hover {
    border-color: rgba(31, 36, 40, 0.35);
    transform: translateY(-2px);
  }

  .btn.discord {
    background: #202833;
    color: #f7f4f0;
    box-shadow: 0 10px 20px rgba(12, 15, 20, 0.3);
  }

  .btn.discord:hover {
    transform: translateY(-2px);
  }

  .quick-stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .quick-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .quick-stat .label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--ink-muted);
  }

  .quick-stat .value {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .status-pill {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(17, 22, 26, 0.1);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .status-pill.online {
    background: rgba(31, 156, 137, 0.15);
    color: #0d3c34;
  }

  .hero-media {
    display: flex;
    justify-content: center;
  }

  .media-shell {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    width: min(420px, 90vw);
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: float 7s ease-in-out infinite;
    background: #111;
  }

  .media-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 18, 22, 0.05) 0%, rgba(15, 18, 22, 0.5)
  100%);
    pointer-events: none;
  }

  #header-video,
  #header-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .media-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(17, 22, 26, 0.7);
    color: #f7f2ea;
  }

  .main-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .panel {
    background: linear-gradient(160deg, var(--panel), var(--panel-soft));
    color: #f7f3ee;
    padding: 32px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .panel::before {
    content: "";
    position: absolute;
    inset: -40% 40% auto auto;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 75, 53, 0.2), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
  }

  .panel h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .panel-lead {
    color: rgba(247, 243, 238, 0.75);
    margin-bottom: 24px;
    max-width: 500px;
  }

  .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #777;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  }

  .status-online {
    color: #3ad29f;
  }

  .status-online .dot {
    background: #3ad29f;
    box-shadow: 0 0 12px rgba(58, 210, 159, 0.6);
    animation: pulse 2s ease infinite;
  }

  .status-offline {
    color: #ff8a5b;
  }

  .status-offline .dot {
    background: #ff8a5b;
  }

  .stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
  }

  .stat {
    background: rgba(255, 255, 255, 0.06);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(247, 243, 238, 0.6);
  }

  .stat-value {
    display: block;
    font-size: 1.6rem;
    margin-top: 10px;
    font-weight: 600;
  }

  .stat-divider {
    margin: 0 6px;
    color: rgba(247, 243, 238, 0.5);
  }

  .panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
  }

  .panel-actions .btn {
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  .panel-footnote {
    font-size: 0.85rem;
    color: rgba(247, 243, 238, 0.6);
  }

  .mono {
    font-family: "Space Grotesk", monospace;
    letter-spacing: 0.08em;
  }

  .feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 18px 0 28px;
  }

  .feature-list li {
    padding-left: 20px;
    position: relative;
    color: rgba(247, 243, 238, 0.8);
    line-height: 1.5;
  }

  .feature-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-strong);
    font-weight: 600;
  }

  .site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
    color: rgba(31, 36, 40, 0.6);
  }

  .site-footer .divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(31, 36, 40, 0.4);
  }

  .is-hidden {
    display: none;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(58, 210, 159, 0.6);
    }
    70% {
      box-shadow: 0 0 0 12px rgba(58, 210, 159, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(58, 210, 159, 0);
    }
  }

  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-copy > * {
    animation: fadeUp 0.8s ease both;
  }

  .hero-copy > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  .hero-copy > *:nth-child(2) {
    animation-delay: 0.1s;
  }

  .hero-copy > *:nth-child(3) {
    animation-delay: 0.15s;
  }

  .hero-copy > *:nth-child(4) {
    animation-delay: 0.2s;
  }

  .hero-copy > *:nth-child(5) {
    animation-delay: 0.25s;
  }

  @media (max-width: 980px) {
    .hero {
      grid-template-columns: 1fr;
    }

    .hero-media {
      order: -1;
    }

    .main-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .panel {
      padding: 24px;
    }

    .btn {
      width: 100%;
    }

    .hero-actions {
      width: 100%;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
