:root {
      --brand: #d966ff; /* primary */
      --brand-600: #c14cf3;
      --brand-700: #a83ae6;
      --bg: #0f0f14;
      --card: rgba(255,255,255,0.06);
      --text: #d966ff;
      --muted: grey;
      --stroke: rgba(255,255,255,0.12);
      --success: #24d17e;
      --error: #ff6b6b;
    }
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      background: white;
      color: var(--text);
      overflow-x: hidden;
    }
    .wrap {
      min-height: 100dvh;
      display: grid;
      grid-template-rows: auto 1fr auto;
    }

   #title, .subtitle { text-align: center;
   font-size: 30px;

   }
     
    /* --- Header --- */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px clamp(16px, 4vw, 40px);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text);
    }
    .brand__logo {
        width: 132px;   /* adjust as needed */
        height: 132px;  /* adjust as needed */
        border-radius: 12px; /* optional, if you want rounded corners */
        object-fit: contain; /* ensures the logo scales properly */
        display: inline-block;
    }
    .brand__text { font-weight: 800; letter-spacing: 0.3px; font-size: 1.32rem; }

    /* --- Hero Card --- */
    .hero {
      position: relative;
      display: grid;
      place-items: center;
      padding: clamp(24px, 4vw, 48px);
    }
    .card {
      width: min(980px, 92vw);
      backdrop-filter: blur(10px);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid var(--stroke);
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 10px 30px rgba(217,102,255,0.15);
      padding: clamp(24px, 4vw, 48px);
      position: relative;
      overflow: hidden;
    }
    .shine {
      position: absolute;
      inset: -2px;
      background: radial-gradient(800px 200px at 50% -10%, rgba(217,102,255,0.35), transparent 40%),
                  radial-gradient(600px 180px at 70% 120%, rgba(255,255,255,0.08), transparent 45%);
      pointer-events: none;
    }

    h1 {
      margin: 0 0 10px 0;
      font-size: clamp(1.8rem, 2.5vw + 1rem, 3.2rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .subtitle {
      color: var(--muted);
      margin: 0 0 28px 0;
      font-size: clamp(1rem, 0.7vw + 0.8rem, 1.2rem);
    }

    /* --- Countdown --- */
    .countdown {
      display: grid;
      grid-template-columns: repeat(4, minmax(70px, 1fr));
      gap: 14px;
      margin: 28px 0 32px;
    }
    .time {
      background: var(--card);
      border: 1px solid var(--stroke);
      border-radius: 14px;
      padding: 14px 12px;
      text-align: center;
    }
    .time strong { display: block; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; }
    .time span { color: var(--muted); font-size: 0.85rem; }

    /* --- Notify Form --- */
    .notify {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      margin-top: 8px;
    }
    .input {
      width: 100%;
      height: 48px;
      padding: 0 14px;
      border-radius: 12px;
      border: 1px solid var(--stroke);
      background: rgba(255,255,255,0.07);
      color: var(--text);
      outline: none;
    }
    .input::placeholder { color: #9aa0aa; }

    .btn {
      height: 48px;
      padding: 0 18px;
      border: 0;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 700;
      color: white;
      background: linear-gradient(135deg, var(--brand), var(--brand-700));
      box-shadow: 0 10px 24px rgba(217,102,255,0.35);
      transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 16px 40px rgba(217,102,255,0.38); }
    .btn:active { transform: translateY(0); }

    /* --- Feature chips --- */
    .chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 6px; }
    .chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 12px; border-radius: 999px; border: 1px solid var(--stroke);
      background: rgba(255,255,255,0.06); color: var(--text); font-size: 0.9rem;
    }
    .chip svg { opacity: 0.9; }

    /* --- Footer --- */
    footer {
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
      padding: 22px clamp(16px, 4vw, 40px);
      border-top: 1px solid var(--stroke);
      color: var(--muted);
    }
    .social { display: flex; gap: 10px; }
    .icon {
      width: 36px; height: 36px; display: inline-grid; place-items: center;
      border: 1px solid var(--stroke); border-radius: 10px; color: var(--text);
      background: rgba(255,255,255,0.06); text-decoration: none;
      transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    }
    .icon:hover { transform: translateY(-2px); background: rgba(217,102,255,0.12); box-shadow: 0 10px 24px rgba(217,102,255,0.25); }

    /* --- Responsive --- */
    @media (max-width: 680px) {
      .countdown { grid-template-columns: repeat(2, minmax(70px, 1fr)); }
      .notify { grid-template-columns: 1fr; }
      footer { justify-content: center; text-align: center; }
    }