body {
      background-color: #121212;
      color: #e0e0e0;
      font-family: 'Segoe UI', sans-serif;
    }
    .header, .navbar, .email-hero, .request-section, .feature-card, footer {
      background-color: #1e1e1e;
      color: #e0e0e0;
    }
    .logo-text {
      color: #ffffff;
      font-size: 1.25rem;
      font-weight: bold;
    }
    .feature-card {
      background-color: #2c2c2c;
      box-shadow: none;
    }
    .request-section {
      background-color: #2c2c2c;
    }
    input, select, button {
      background-color: #333;
      color: #fff;
      border: 1px solid #444;
      width: 100%;
      padding: 0.75rem;
      border-radius: 6px;
      font-size: 1rem;
    }
    .form-group {
      margin-bottom: 1rem;
    }
    input::placeholder {
      font-size: 0.95rem;
    }
    .cta-button {
      background-color: #3498db;
      color: white;
      cursor: pointer;
      transition: background 0.3s;
    }
    .cta-button:hover {
      background-color: #2980b9;
    }
    .form-notice {
      text-align: center;
      font-size: 0.9rem;
      color: #ccc;
    }
    a {
      color: #90caf9;
    }
    @media (max-width: 600px) {
      input, select, button {
        font-size: 0.9rem;
        padding: 0.65rem;
      }
    }


/* --- Start of fixed email.css content --- */
/* Email Page Specific Styles */
.email-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.email-hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  margin-bottom: 2rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #2c2c2c;
  box-shadow: none;
}
.emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.request-section {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #2c2c2c;
  border-radius: 8px;
}
.domain-hint {
  color: #cccccc;
  font-style: italic;
}
.form-notice {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #cccccc;
  text-align: center;
}
@media (max-width: 600px) {
  .email-hero { padding: 2rem 1rem; }
  .features { grid-template-columns: 1fr; }
  .request-section { padding: 1rem; }
}
/* --- End of fixed email.css content --- */
