/* waitlist.css — Clean, Focused, High-Converting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --red: #ff2a2a;
    --dark: #0a0a0a;
    --darker: #000;
  }

  /* In your globals.css or a CSS module */
  ::selection {
    background-color: rgba(255, 0, 0, 0.3);
    color: white;
    text-shadow: none;
  }
  
  ::-moz-selection {
    background-color: #e600004d;
    color: white;
    text-shadow: none;
  }

  /* Works on Chrome, Edge, and Safari */
  ::-webkit-scrollbar {
    width: 12px;
  }

  /* The track (the background of the scrollbar) */
  ::-webkit-scrollbar-track {
    background: #1A1A1A; /* A dark color that matches your page background */
  }

  /* The draggable scrolling handle */
  ::-webkit-scrollbar-thumb {
    background-color: #E53E3E; /* The core red color */
    border-radius: 20px; /* Fully rounded edges */
    border: 3px solid #1A1A1A; /* Creates a nice padding effect */
    box-shadow: 0 0 10px #E53E3E, 0 0 5px #FF0000; /* The red glow */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #FF6B6B; /* A brighter red on hover */
    box-shadow: 0 0 15px #FF6B6B, 0 0 10px #FF4D4D; /* A more intense glow */
  }

  /* Handle on active state (when you're clicking and dragging) */
  ::-webkit-scrollbar-thumb:active {
    background-color: #FF8787;
    box-shadow: 0 0 20px #FF8787, 0 0 15px #FF6B6B;
  }
  
  body {
    background-color: var(--darker);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-radius: 14px;
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 30, 30, 0.25);
    z-index: 1000;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .logo img {
    height: 32px;
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.5));
  }
  
  .site-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
  }
  
  .nav-links { display: flex; gap: 28px; }
  .nav-link { color: #e0e0e0; text-decoration: none; font-size: 15px; }
  .nav-link:hover { color: var(--red); }
  
  /* Hero */
  .waitlist-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
  }
  
  .hero-content {
    text-align: center;
    max-width: 600px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 40px;
  }
  
  /* Form */
  .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .input-group {
    position: relative;
  }
  
  .email-input {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
  }
  
  .email-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(255, 40, 40, 0.2);
  }
  
  .email-input.invalid {
    border-color: #ff4d4d;
    background: rgba(255, 20, 20, 0.05);
  }
  
  .error-message {
    position: absolute;
    top: 100%;
    left: 0;
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-top: 8px;
    text-align: left;
    display: none;
  }
  
  .submit-button {
    background: linear-gradient(135deg, var(--red), #cc0000);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 40, 40, 0.3);
  }
  
  .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 40, 40, 0.4);
  }
  
  .submit-button:active {
    transform: translateY(0);
  }
  
  .note {
    color: #777;
    font-size: 0.95rem;
    margin-top: 30px;
    line-height: 1.6;
  }
  
  /* Footer */
  .waitlist-footer {
    text-align: center;
    padding: 40px;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .navbar { left: 20px; right: 20px; padding: 0 16px; }
    .hero-title { font-size: 2.2rem; }
    .email-input { padding: 16px; }
    .submit-button { padding: 16px; }
  }