/* Global body styling */
body {
  margin: 0;
  padding: 0;
  background: #0a0f1e;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  text-align: center;
  overflow-x: hidden;
  cursor: url('images/custom-cursor.svg') 16 16, url('images/custom-cursor.png') 16 16, auto;
}

/* Heading styles */
h1, h2, h3 {
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('your-poster-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}

h1 {
  font-size: 4rem;
  text-shadow: 0 0 15px #58EDEF;
}

/* Using Kode Mono for monospace elements */
.sci-fi-text {
  font-family: 'Kode Mono', monospace;
  font-size: 16px;
  color: #58EDEF;
  text-shadow: 0px 0px 5px rgba(88, 237, 239, 0.8);
}

/* Scroll down button and animation */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  background: none;
  border: none;
  animation: pulse-glow 1.5s infinite alternate;
}

.scroll-down svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #E441B7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px #E441B7);
}

@keyframes pulse-glow {
  0% { filter: drop-shadow(0 0 5px #E441B7); }
  100% { filter: drop-shadow(0 0 15px #E441B7); }
}

/* Countdown timer (continuously pulsing every 2 seconds with brighter effect) */
.countdown {
  font-family: 'Kode Mono', monospace;
  font-size: 24px;
  color: #E441B7;
  animation: pulse-once 2s ease-in-out infinite;
}

@keyframes pulse-once {
  0% { filter: drop-shadow(0 0 1px #E441B7); }
  50% { filter: drop-shadow(0 0 5px #E441B7); }
  100% { filter: drop-shadow(0 0 1px #E441B7); }
}

/* Event list styling using grid for event rows with two columns */
.event-list {
  margin-top: 40px; /* extra space above events */
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}
.event-name {
  font-family: 'Kode Mono', monospace;
  font-size: 18px;
  color: #58EDEF;
  text-align: left;
}
.event-time {
  font-family: 'Kode Mono', monospace;
  font-size: 18px;
  color: #58EDEF;
  text-align: left;
}

/* Upcoming events heading */
#events h2 {
  font-size: 3rem;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Poster image styling */
.poster {
  display: flex;
  justify-content: center;
  padding: 16px;
}
.poster img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom cursor on hover for interactive elements */
button:hover, a:hover {
  cursor: url('images/cursor_hover.svg') 16 16, url('images/cursor_hover.png') 16 16, auto;
}

/* Join on audio info styling (first line) */
.join-audio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-family: 'Kode Mono', monospace;
  font-size: 16px;
}

/* Join on audio buttons styling (second line) */
.join-audio-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

/* Audio button styling based on Figma design, with a slower hover transition */
.audio-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  gap: 8px;
  width: 132px;
  height: 27px;
  background: rgba(70,20,67,1);
  border-radius: 16px 24px 10px;
  text-decoration: none;
  font-family: 'Kode Mono', monospace;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  color: #FFC84E;
  transition: background-color 1s ease-in-out;
}

.audio-btn:hover {
  background: rgba(70,20,67,0.05);
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .sci-fi-text {
    font-size: 14px;
  }
  .countdown {
    font-size: 18px;
  }
  .scroll-down svg {
    width: 36px;
    height: 36px;
  }
}
