/* Header Section */
header {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Responsive Styles */
/* @media (max-width: 768px) {
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .container {
    padding: 0 15px;
    width: 100%;
  }
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
  .hero {
    padding: 60px 20px;
  }

  .countdown-container {
    flex-wrap: wrap;
  }

  .event-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-button {
    width: 80%;
  }
}
.neon-text {
  animation: neon-glow 2s infinite;
} */

/* Retro animation effects */
@keyframes neon-glow {
  0% {
    text-shadow: 2px 2px 5px rgba(255, 197, 103, 0.7);
  }
  50% {
    text-shadow: 2px 2px 20px rgba(255, 197, 103, 0.9);
  }
  100% {
    text-shadow: 2px 2px 5px rgba(255, 197, 103, 0.7);
  }
}



/* CRT Scan effect */
@keyframes scanline {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}


.crt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
  opacity: 0.03;
}

.scanline {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, white, transparent);
  animation: scanline 8s linear infinite;
}


@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bottom-lines {
  bottom: 0;
  left: 1;
}