    body {
      font-family: 'Orbitron', sans-serif;
      background: #0d0d0d;
      color: #FFD700;
      margin: 0;
      padding: 0;
      line-height: 1.6;
    }
    header {
      background: linear-gradient(90deg, #FFD700, #6600ff);
      color: white;
      text-align: center;
      padding: 2rem 1rem;
    }
    header h1 {
      font-size: 2.5rem;
      margin: 0;
    }
    header h2 {
      font-weight: 400;
      margin: 0.5rem 0 0;
    }
    section {
      max-width: 900px;
      margin: 2rem auto;
      padding: 1.5rem;
      background: #1a1a1a;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(255,0,102,0.4);
    }
    h3 {
      border-bottom: 2px solid #FFD700;
      padding-bottom: 0.5rem;
      margin-bottom: 1rem;
      color: #6600ff;
    }
    ul {
      list-style: none;
      padding: 0;
    }
    ul li::before {
      content: "🎮 ";
    }
    .schedule {
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 1rem;
    }
    .event {
      background: #262626;
      padding: 0.75rem;
      border-radius: 6px;
    }
    footer {
      text-align: center;
      padding: 1rem;
      background: #111;
      color: #888;
      font-size: 0.9rem;
    }
.schedule {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-family: 'Orbitron', sans-serif;
}

.schedule th, .schedule td {
  border: 1px solid #FFD700;
  padding: 0.6rem;
  text-align: left;
}

.schedule th {
  background: #333;
  color: #FFD700;
  text-transform: uppercase;
}

.schedule tr:nth-child(even) {
  background: #222;
}

.day-schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.day-card {
  flex: 1 1 300px;
  background: #111;
  border: 3px solid #FFD700;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 4px 4px 0 #000;
}

.day-card h3 {
  margin-top: 0;
  text-align: center;
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
}

.day-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.day-card li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #FFD700;
}

.day-card li strong {
  color: #FFD700;
  margin-right: 0.5rem;
}


/* Food table accent */
.schedule.food th {
  background: #552; /* warm brownish tone */
}
.schedule.food td {
  color: #FFD700;
}

/* Events table accent */
.schedule.events th {
  background: #224; /* cool bluish tone */
}
.schedule.events td {
  color: #FFD700;
}
.schedule-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  flex: 1 1 400px;
  background: #111;
  border: 3px solid #FFD700;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 6px 6px 0 #000;
}

.card h3 {
  margin-top: 0;
  color: #FFD700;
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  color: #FFD700;
}

.schedule th, .schedule td {
  border: 1px solid #FFD700;
  padding: 0.6rem;
  text-align: left;
}

.schedule th {
  background: #333;
  text-transform: uppercase;
}

.schedule tr:nth-child(even) {
  background: #222;
}

/* Flavor accents */
.food-card {
  border-color: #ff8800;
  box-shadow: 6px 6px 0 #000, 0 0 10px #ff8800;
}
.event-card {
  border-color: #00bfff;
  box-shadow: 6px 6px 0 #000, 0 0 10px #00bfff;
}

.site-nav {
  text-align: center;
  margin: 1rem 0;
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 1.5rem;
}
.site-nav a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}
.site-nav a:hover {
  text-decoration: underline;
  color: #ff8800; /* subtle hover accent */
}