/* Load custom font */
@font-face {
  font-family: 'NewEdge';
  src: url('fonts/NewEdge666Test-UltraLightRounded.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-family: 'NewEdge', sans-serif;
  overflow-x: hidden;
}

/* Sticky banner at top */
header {
  position: sticky;
  top: 0;
  background: #eaff00e9;
  text-align: center;
  padding: 1rem;
  z-index: 10;
  border-bottom: 1px solid #444;
}

.banner-link {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: normal;
  font-size: 1.2rem;
  font-family: 'NewEdge', sans-serif;
}

.video-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image container */
.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container img {
  width: 100%; /* full width of container */
  max-width: 900px; /* optional, keep all images the same width */
  display: block;
  margin: 0 auto;
}

/* Countdown page styles */
.countdown-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  padding: 2rem;
  color: white; /* same as sticky banner */
  font-family: 'NewEdge', sans-serif;
}

.countdown-page h1 {
  font-size: 2rem; /* larger than normal */
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

#countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 2.5rem; /* larger numbers */
  font-weight: bold;
}

#countdown div {
  min-width: 100px;
  padding: 1rem 1.5rem;
  background: transparent; /* no background, blends with page */
  border-radius: 12px;
}

#countdown span {
  display: block;
  font-size: 4rem; /* large numbers */
  margin-bottom: 0.5rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .video-container {
    height: 60vh; /* smaller height on mobile */
  }
  .video-container video {
    height: 100%;
    object-fit: cover; /* or 'contain' if you don’t want cropping */
  }

  .image-container img {
    max-width: 100%; /* images can take full width of mobile screen */
  }

  .banner-link {
    font-size: 1rem; /* slightly smaller banner text on mobile */
  }

  /* Countdown adjustments for mobile */
  .countdown-page h1 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  #countdown {
    font-size: 1rem;
    gap: 1rem;
  }
  #countdown span {
    font-size: 2rem;
  }
}
