:root {
      --primary: #6366f1;
      --primary-glow: rgba(99, 102, 241, 0.4);
      --bg-dark: #0a0a0c;
      --text-main: #ffffff;
      --text-muted: rgba(255, 255, 255, 0.7);
      --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
      --font-heading: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;
}

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

body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: var(--font-body);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow-x: hidden;
      position: relative;
      background-image: url('assets/hero-bg.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
}

.background-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.8) 100%);
      z-index: 0;
}

.container {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 800px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3rem;
      animation: fadeIn 1.2s ease-out;
}

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

/* Logo Section */
.logo {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: #fff;
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.logo span {
      color: var(--primary);
      margin-left: 2px;
}

/* Content Card */
.content-card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 32px;
      padding: 4rem 3rem;
      text-align: center;
      width: 100%;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.badge {
      background: var(--primary);
      color: #fff;
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      display: inline-block;
      margin-bottom: 2rem;
      box-shadow: 0 0 20px var(--primary-glow);
}

.hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.hero-description {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.6;
      max-width: 500px;
      margin: 0 auto 3rem;
}

/* Countdown */
.countdown {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
}

.time-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 80px;
}

.time-block span {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
}

.time-block label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-top: 0.5rem;
}

/* CTA Section */
.cta-section h3 {
      font-size: 1.1rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
}

.subscribe-form {
      display: flex;
      gap: 0.75rem;
      max-width: 500px;
      margin: 0 auto;
}

.subscribe-form input {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 1rem 1.5rem;
      color: #fff;
      font-family: var(--font-body);
      outline: none;
      transition: all 0.3s ease;
}

.subscribe-form input:focus {
      border-color: var(--primary);
      background: rgba(255, 255, 255, 0.08);
}

.subscribe-form button {
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 1rem 2rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
}

.subscribe-form button:hover {
      background: #4f46e5;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px var(--primary-glow);
}

/* Footer & Socials */
.social-links {
      display: flex;
      gap: 1.5rem;
}

.social-icon {
      color: var(--text-muted);
      font-size: 1.25rem;
      transition: all 0.3s ease;
}

.social-icon:hover {
      color: #fff;
      transform: translateY(-5px);
}

/* Mobile Adjustments */
@media (max-width: 640px) {
      .content-card {
                padding: 3rem 1.5rem;
      }

      .countdown {
                gap: 0.75rem;
      }

      .time-block {
                min-width: 60px;
      }

      .time-block span {
                font-size: 1.75rem;
      }

      .subscribe-form {
                flex-direction: column;
      }
}
