/* Core Styling & Variables - New Orange & Teal Palette */
:root {
  /* Colors */
  --color-main-orange: #FF6B35;   /* Primary Accent */
  --color-main-orange-hover: #e55a2b; 
  --color-sec-teal: #008080;     /* Secondary Accent */
  
  --color-bg-dark: #121212;      /* Background behind image */
  --color-card-bg: rgba(0, 0, 0, 0.7); /* Translucent cards */
  
  /* Text */
  --text-on-dark: #FFFFFF;
  --text-muted: #CCCCCC;
  --text-on-accents: #FFFFFF;    /* Text inside buttons/badges */
  
  /* Layout */
  --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--color-bg-dark);
  color: var(--text-on-dark);
  font-family: var(--font-family);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

/* Background Image Handling */
.background-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* LOADING YOUR GENERATED IMAGE */
  background-image: url('model-hero.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; /* Puts image at the very back */
}

/* Dark gradient overlay to ensure text readability */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.5) 100%);
  z-index: -1;
}

.container {
  max-width: 700px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 40px 20px;
}

/* Header & Brand Logo */
.logo-area .brand-logo {
  margin-bottom: 0.5rem;
  /* Subtle glow using Orange */
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
}

.logo-area h1 {
  font-size: 2.8rem;
  letter-spacing: 5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-on-dark);
}

.logo-area h1 span {
  color: var(--color-main-orange);
}

.tagline {
  color: var(--text-muted);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
}

/* Hero Content */
.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-on-dark);
}

.hero-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-content strong {
  color: var(--color-sec-teal); /* Highlight in Teal */
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.time-box {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(5px); /* Modern frosted effect */
}

.time-box span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-main-orange); /* Numbers in Orange */
}

.time-box label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 1px;
}

/* Subscription Form */
.signup-section {
  width: 100%;
}

.input-group {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-on-dark);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

input[type="email"]:focus {
  border-color: var(--color-sec-teal); /* Focus state in Teal */
}

button {
  padding: 16px 26px;
  border-radius: 8px;
  border: none;
  background-color: var(--color-main-orange); /* Main button Orange */
  color: var(--text-on-accents);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}

button:hover {
  background-color: var(--color-main-orange-hover);
  transform: translateY(-1px);
}

.form-message {
  margin-top: 15px;
  font-size: 0.9rem;
  min-height: 22px;
}

/* Footer */
footer {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 20rem;
  
  margin-bottom: -10rem;
  
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
  .input-group {
    flex-direction: column;
  }
  
  .logo-area h1 { font-size: 2rem; letter-spacing: 3px; }
  .hero-content h2 { font-size: 1.6rem; }

  .countdown-container {
    gap: 10px;
  }
  
  .time-box {
    width: 70px;
    padding: 10px;
  }
  
  .time-box span {
    font-size: 1.6rem;
  }
}