    :root {
      --bg: #0b1208;
      --bg-secondary: #0f1a0f;
      --gold: #d4af37;
      --green: #2ecc71;
      --text: #f5f5f5;
      --accent-gradient: linear-gradient(135deg, var(--gold), var(--green));
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, var(--bg), var(--bg-secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
    }

    /* Glass Card */
    .coming-card {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(212, 175, 55, 0.35);
      border-radius: 25px;
      padding: 50px 40px;
      text-align: center;
      max-width: 420px;
      width: 90%;
      box-shadow: 0 25px 70px rgba(212, 175, 55, 0.15);
      transition: all 0.4s ease;
    }

    /* Hover effect */
    .coming-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 35px 90px rgba(212, 175, 55, 0.3);
    }

    /* Title */
    .coming-card h1 {
      font-size: 2.6rem;
      margin-bottom: 15px;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Subtitle */
    .coming-card p {
      font-size: 1.05rem;
      line-height: 1.6;
      opacity: 0.9;
      margin-bottom: 35px;
    }

    /* Button */
    .home-btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      color: #000;
      background: var(--accent-gradient);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
      transition: all 0.35s ease;
    }

    .home-btn:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
      background: linear-gradient(270deg, var(--green), var(--gold));
    }

    /* Small text */
    .coming-card span {
      display: block;
      margin-top: 25px;
      font-size: 0.85rem;
      opacity: 0.6;
    }