/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}
body {
  background: #1C2733;
  color: #fff;
  overflow-x: hidden;
}

/* Video Background */
.video-background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 2s ease-in-out;
}
.bg-video.hidden {
  opacity: 0;
}

/* Home Navigation */
.home-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 5;
}

/* Draft Alert Banner */
.draft-alert-banner {
  background: linear-gradient(135deg, #B85C38, #8B1538);
  border-bottom: 3px solid #F4B942;
  padding: 1em 2em;
  position: relative;
  z-index: 4;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { box-shadow: 0 0 10px rgba(244, 185, 66, 0.5); }
  to { box-shadow: 0 0 20px rgba(244, 185, 66, 0.8); }
}

.draft-alert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5em;
}

.draft-alert-icon {
  font-size: 2em;
  color: #F4B942;
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.draft-alert-text {
  flex: 1;
}

.draft-alert-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.2em;
}

.draft-alert-subtitle {
  font-size: 0.9em;
  color: #FFE4B3;
  opacity: 0.9;
}

.draft-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.8em 1.2em;
  border-radius: 8px;
  border: 1px solid #F4B942;
}

.countdown-timer {
  font-size: 1.5em;
  font-weight: bold;
  color: #F4B942;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}

.countdown-label {
  font-size: 0.7em;
  color: #FFE4B3;
  margin-top: 0.2em;
  letter-spacing: 1px;
}

.draft-alert-cta {
  background: #F4B942;
  color: #1C2733;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #F4B942;
  animation: cta-pulse 1.5s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.draft-alert-cta:hover {
  background: transparent;
  color: #F4B942;
  transform: scale(1.1);
}

/* Mobile Responsive for Draft Banner */
@media (max-width: 768px) {
  .draft-alert-content {
    flex-direction: column;
    gap: 1em;
    text-align: center;
  }
  
  .draft-alert-icon {
    font-size: 1.5em;
  }
  
  .draft-alert-title {
    font-size: 1.1em;
  }
  
  .countdown-timer {
    font-size: 1.2em;
  }
}

.home-nav .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.home-nav .logo-img {
  height: 40px;
  width: auto;
}

.home-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.home-nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.2s ease;
}

.home-nav .nav-links a:hover {
  color: #B85C38;
}

.home-nav .nav-links .btn-primary,
.home-nav .nav-links .btn-outline {
  padding: 0.6em 1.2em;
  font-size: 0.9em;
}

/* Header */
.header {
  text-align: center;
  padding: 8vh 2em;
}
.header h1 {
  font-size: 4em;
  color: #B85C38; /* Tan */
  text-shadow: 0 3px 6px rgba(0,0,0,0.8);
}
.header p {
  font-size: 1.6em;
  margin-top: 0.5em;
  margin-bottom: 2em;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 2em auto;
}

.hero-description p {
  font-size: 1.2em;
  color: #ddd;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-accent, .btn-secondary {
  background: #B85C38;
  color: #fff;
  border: none;
  padding: 0.8em 1.6em;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #B85C38;
}

/* Additional Button Styles */
.btn-primary {
  background: #B85C38;
  color: #fff;
  border: none;
  padding: 0.8em 1.6em;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline {
  background: transparent;
  color: #B85C38;
  border: 2px solid #B85C38;
  padding: 0.8em 1.6em;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover, .btn-outline:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(184, 92, 56, 0.6);
}

.btn-outline:hover {
  background: #B85C38;
  color: #fff;
}
.btn-accent:hover, .btn-secondary:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(184, 92, 56, 0.6);
}

/* Sections */
section {
  background: rgba(0, 0, 0, 0.65);
  padding: 4em 2em;
  margin: 2em auto;
  border-radius: 10px;
  max-width: 1000px;
}

/* Features Section */
.features {
  background: rgba(0, 0, 0, 0.75);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(184, 92, 56, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 92, 56, 0.5);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.feature h3 {
  color: #B85C38;
  margin-bottom: 1em;
  font-size: 1.3em;
}

.feature p {
  color: #ddd;
  line-height: 1.5;
}

/* How It Works CTA */
.how-it-works-cta {
  text-align: center;
  margin-top: 2em;
}
section h2 {
  text-align: center;
  margin-bottom: 1.5em;
  color: #B85C38;
  font-size: 2.4em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
}
.step {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid #B85C38;
  padding: 1.2em;
  border-radius: 6px;
}
.step h3 {
  color: #B85C38;
  margin-bottom: 0.5em;
}
.step p {
  font-size: 1em;
  line-height: 1.5;
}

/* FAQ */
.faq .faq-item {
  margin-bottom: 1.2em;
}
.faq .faq-item h4 {
  color: #B85C38;
  margin-bottom: 0.3em;
}
.faq .faq-item p {
  color: #ddd;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 10;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease forwards;
}
.popup-content {
  background: #fff;
  color: #333;
  padding: 2em;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
}
.close-popup {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.8em;
  cursor: pointer;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5em;
  color: #ccc;
  font-size: 0.9em;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .home-nav {
    flex-direction: column;
    gap: 1em;
    padding: 1em;
  }
  
  .home-nav .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
  }
  
  .header {
    padding: 4vh 1em;
  }
  
  .header h1 {
    font-size: 2.5em;
  }
  
  .header p {
    font-size: 1.2em;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  section {
    margin: 1em;
    padding: 2em 1em;
  }
}

/* — Beta Info Block — */
.beta-info {
  text-align: center;
  margin-bottom: 2em;
}
.countdown {
  font-size: 2em;
  font-weight: 700;
  color: #FFD700;       /* gold-ish for emphasis */
  margin-bottom: 0.3em;
}
.spots {
  font-size: 2em;
  color: #FF6B6B;       /* contrasting accent */
}
.spots span {
  font-weight: 700;
}

.call-info {
  text-align: center;
  margin-top: 1.5em;
  color: #DDDDDD;
  font-size: 1em;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.call-info p {
  background: rgba(255,255,255,0.1);
  display: inline-block;
  padding: 0.8em 1.2em;
  border-radius: 6px;
}
