* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: #080d1a;
  color: #ffffff;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Full-Screen Video Background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* Semi-transparent tint overlay */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 13, 26, 0.35);
  z-index: -1;
  pointer-events: none;
}

/* UI Container & Initial Hidden State */
.ui-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  padding: 2rem 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2.5s ease-out, transform 2.5s ease-out;
}

/* Class added by JavaScript when sun rises */
.ui-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar (Desktop) */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-accent {
  color: #ff5500;
  font-weight: bold;
}

.nav-links a {
  color: #cccccc;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.badge {
  margin-left: 2rem;
  color: #ff5500;
  font-size: 0.85rem;
  border-bottom: 2px solid #ff5500;
}

/* Hero Content */
.hero-content {
  max-width: 650px;
}

.tagline {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #a0aab8;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.subtext {
  color: #c0c8d4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid #ff5500;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: rgba(255, 85, 0, 0.2);
}

/* Footer */
.footer {
  font-size: 0.75rem;
  color: #606b7a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  .ui-container {
    padding: 1.5rem 1.25rem 2.5rem 1.25rem !important;
    min-height: 100vh;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  /* Clean navbar row: Logo left, COMING SOON right */
  .navbar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Hide raw text nav links on mobile screens to prevent overlap */
  .nav-links a {
    display: none !important;
  }

  .badge {
    margin-left: 0 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid #ff5500 !important;
    white-space: nowrap !important;
  }

  .hero-content {
    margin-top: auto;
    margin-bottom: auto;
  }

  .tagline {
    font-size: 0.75rem !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: 1.5px !important;
  }

  h1 {
    font-size: 2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
    font-weight: 300 !important;
  }

  h1 br {
    display: none !important;
  }

  .subtext {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.75rem !important;
    color: #d0d8e4 !important;
  }

  .cta-button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 0.85rem !important;
  }
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}