body {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a2e, #16213e);
  background-image: url('https://images.unsplash.com/photo-1557682224-5b8590cd9ec5?auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #f0f0f0;
  overflow-x: hidden;
}

/* Intro animation */
.intro {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 3s ease forwards;
  animation-delay: 2s;
}

.intro-text {
  font-size: 2rem;
  color: #ffcc00;
  animation: bounceIn 2s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  80% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

header {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  color: #ffcc00;
  text-shadow: 0 0 5px #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.nav-buttons {
  margin-top: 0.5rem;
}

.nav-buttons button {
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(145deg, #ff00cc, #3333ff);
  color: #fff;
  border: 2px solid #00ffff;
  border-radius: 30px;
  box-shadow: 0 0 15px #00ffff, 0 0 5px #ff00cc inset;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-buttons button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #00ffff, 0 0 10px #ff00cc inset;
}

#calendar {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.month {
  padding: 1rem;
}

.month h2 {
  font-size: 1.5rem;
  color: #ffcc00;
  margin-bottom: 1rem;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffcc00;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-radius: 4px;
  min-height: 80px;
  font-size: 0.8rem;
  padding: 5px;
  cursor: pointer;
}

.day:hover {
  background: #ffe5e0;
}

.game {
  font-size: 0.7rem;
  margin-top: 4px;
  border-radius: 3px;
  padding: 2px;
  color: white;
  background: #444;
}

.game.bucks {
  background: #2e8b57;
}

.game.ohiostate {
  background: #bb0000;
}

.game.playoff {
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  box-shadow: 0 0 5px #00ffff;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: left;
  color: #000;
}

.modal-content button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #ff6f61;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Upcoming Games widget */
.countdown-widget {
  margin: 2rem auto;
  padding: 1rem;
  background: rgba(0,0,0,0.7);
  border: 2px solid #ffcc00;
  border-radius: 10px;
  max-width: 400px;
  color: #ffcc00;
  font-size: 1.2rem;
  position: relative;
}

.scoreboard {
  background: #000;
  border: 2px solid #ffcc00;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 20px #ffcc00;
}

.hoop {
  width: 100px;
  height: 100px;
  border: 5px solid #ffcc00;
  border-radius: 50%;
  margin: 1rem auto;
  box-shadow: 0 0 20px #ffcc00;
}
