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

    :root {
      --bg: #060609;
      --accent: #c8a97e;
      --accent2: #7e9fc8;
      --text: #e8e0d5;
      --muted: rgba(200,190,180,0.35);
      --glow: rgba(200,169,126,0.18);
    }

    html, body {
      width: 100%; height: 100%;
      background: var(--bg);
      overflow: hidden;
      font-family: 'Cormorant Garamond', serif;
      color: var(--text);
    }

    canvas#bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0;
    }

    .overlay {
      position: fixed;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      pointer-events: none;
    }

    /* Top line */
    .top-line {
      position: fixed;
      top: 38px; left: 50%;
      transform: translateX(-50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(10px, 1.1vw, 13px);
      letter-spacing: 0.45em;
      color: var(--muted);
      z-index: 2;
      opacity: 0;
      animation: fadeUp 1.2s 0.3s forwards;
    }

    /* Logo / Brand */
    .brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(30px, 8vw, 100px);
      letter-spacing: 0.35em;
      color: var(--text);
      line-height: 1;
      opacity: 0;
      animation: fadeUp 1.2s 0.6s forwards;
      text-shadow: 0 0 80px var(--glow), 0 0 160px rgba(200,169,126,0.08);
      position: relative;
    }

    .brand::after {
      content: '';
      display: block;
      margin: 18px auto 0;
      width: 60%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .tagline {
      margin-top: 22px;
      font-size: clamp(13px, 1.8vw, 18px);
      font-weight: 300;
      letter-spacing: 0.35em;
      color: var(--muted);
      opacity: 0;
      animation: fadeUp 1.2s 0.9s forwards;
      text-transform: uppercase;
    }

    /* Countdown */
    .countdown-wrapper {
      margin-top: 60px;
      opacity: 0;
      animation: fadeUp 1.2s 1.2s forwards;
    }

    .countdown-label {
      text-align: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(9px, 1vw, 11px);
      letter-spacing: 0.55em;
      color: var(--accent);
      margin-bottom: 28px;
      opacity: 0.7;
    }

    .countdown {
      display: flex;
      gap: clamp(10px, 3vw, 48px);
      align-items: flex-start;
    }

    .unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .unit-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(45px, 9vw, 110px);
      line-height: 1;
      color: var(--text);
      text-shadow: 0 0 40px var(--glow);
      position: relative;
      min-width: clamp(60px, 9vw, 120px);
      text-align: center;
    }

    .unit-number::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid rgba(200,169,126,0.12);
      border-radius: 4px;
    }

    .unit-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(9px, 1vw, 11px);
      letter-spacing: 0.4em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .separator {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 80px);
      color: var(--accent);
      opacity: 0.4;
      line-height: 1;
      margin-top: 4px;
      animation: pulse 1s infinite;
    }

    /* Bottom text */
    .bottom-text {
      position: fixed;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      font-size: clamp(9px, 1vw, 11px);
      letter-spacing: 0.4em;
      color: var(--muted);
      z-index: 2;
      white-space: nowrap;
      opacity: 0;
      animation: fadeUp 1.2s 1.6s forwards;
    }

    /* Noise overlay */
    .noise {
      position: fixed;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      opacity: 0.028;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    /* Vignette */
    .vignette {
      position: fixed;
      inset: 0;
      z-index: 1;
      background: radial-gradient(ellipse at center, transparent 40%, rgba(6,6,9,0.7) 100%);
      pointer-events: none;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.4; }
      50%       { opacity: 0.7; }
    }

    /* Expired state */
    .expired-msg {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 5vw, 60px);
      letter-spacing: 0.3em;
      color: var(--accent);
      text-align: center;
      text-shadow: 0 0 60px var(--glow);
    }
