/* ------------------------------
   GLOBAL RESET & BASE STYLES
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', Arial, sans-serif;
  background-color: #0a0a0f;
  color: #e0e0ff;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 50px;
}

/* Neon Glow Helper */
.neon-glow {
  text-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff, 0 0 32px #00eaff;
}

/* ------------------------------
   HEADER & NAVIGATION
--------------------------------*/
header {
  padding: 20px;
  background: #0d0d14;
  border-bottom: 2px solid #1a1a2e;
  box-shadow: 0 0 20px #00eaff33;
}

h1 {
  font-size: 2.5rem;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
}

nav {
  margin-top: 15px;
}

nav a {
  margin: 0 15px;
  color: #9be8ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
}

nav a:hover {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}

nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000814;
  padding: 10px 0;
  z-index: 999;
  border-bottom: 2px solid #00eaff;
  box-shadow: 0 0 20px #00eaff55;
}

/* ------------------------------
   LOGO
--------------------------------*/
.logo {
  max-width: 100%;
  height:auto;
  margin: 20px auto;
  display: block;
  filter: drop-shadow(0 0 10px #00eaff);
}

/* ------------------------------
   SECTIONS
-------------------------------*/
section {
  padding: 40px 20px;
  border-bottom: 1px solid #1a1a2e;
}

section h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}

section p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 1.1rem;
  color: #cceeff;
}

/* ------------------------------
   SUPPORT SECTION
--------------------------------*/
#support img {
  margin-top: 10px;
  filter: drop-shadow(0 0 10px #00eaff);
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  margin-top: 40px;
  padding: 20px;
  background: #0d0d14;
  border-top: 2px solid #00eaff;
  box-shadow: 0 0 20px #00eaff33;
}

/* ------------------------------
   NEON SCHEDULE BANNER
--------------------------------*/
#schedule-banner {
  padding: 40px 20px;
  border-bottom: 1px solid #1a1a2e;
}

.neon-title {
  font-size: 2.2rem;
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
  margin-bottom: 20px;
}

.schedule-banner-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  background: rgba(0, 20, 40, 0.4);
  border: 2px solid #00eaff;
  border-radius: 12px;
  box-shadow: 0 0 20px #00eaff55, inset 0 0 20px #00eaff33;
  backdrop-filter: blur(4px);
}

.schedule-banner-box p {
  font-size: 1.3rem;
  margin: 10px 0;
  color: #cceeff;
  text-shadow: 0 0 6px #00eaff55;
}


.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
}