:root {
      --bg: #1a0000;
      --panel: #2b0008;
      --border: #cc0033;
      --accent: #e6003d;
      --accent-glow: #ff3366;
      --text: #ffd6e0;
      --muted: #cc6688;
    }

::selection {
  background: var(--red);
  color: #A30002;
}

::-moz-selection {
  background: var(--red);
  color: #A30002;
}

    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .wrap {
      min-height: 100svh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(24px, 5vw, 80px);
      box-sizing: border-box;
    }

    .stage {
      width: 100%;
      max-width: 1400px;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-between;
      gap: clamp(40px, 6vw, 100px);
    }

    .content {
      flex: 0 1 48%;
      min-width: 320px;
      max-width: 720px;
    }

    h1 {
      margin: 0 0 clamp(18px, 2.2vw, 28px);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.15;
    }

    h1 span {
      color: var(--accent);
    }

    .hero-subheading {
      font-size: clamp(18px, 2.2vw, 26px);
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: clamp(28px, 3.5vw, 52px);
    }

    .button-row {
      display: flex;
      gap: clamp(14px, 2vw, 24px);
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary, .btn-secondary {
      padding: clamp(14px, 1.5vw, 18px) clamp(24px, 2.5vw, 36px);
      border-radius: 12px;
      font-size: clamp(16px, 1.4vw, 20px);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 25px rgba(230,0,61,.3);
    }

    .btn-primary:hover {
      background: var(--accent-glow);
      box-shadow: 0 0 40px rgba(255,51,102,.5);
      transform: translateY(-4px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text);
      border: 2px solid var(--border);
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .btn-secondary:hover {
      border-color: var(--accent-glow);
      box-shadow: 0 0 20px rgba(255,51,102,.3);
    }

    .video-container {
  flex: 0 1 52%;
  min-width: 360px;
  max-width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(230,0,61,.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
 
    @media (max-width: 700px) {
      .stage {
        flex-direction: column;
        text-align: center;
      }

      .content {
        flex: 1;
        max-width: 900px;
        min-width: 0;
      }

      .button-row {
        justify-content: center;
      }

      .video-container {
        max-width: 100%;
        width: 100%;
        min-width: 0;
      }

      .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 420px;
        justify-content: center;
      }
    }
