
/* body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 30px;
  text-align: center;
}

h1 {
  font-size: 36px;
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  color: #00ffff;
  text-shadow: 0 0 4px #00ffff;
}

select {
  width: 250px;
  padding: 10px;
  margin-top: 10px;
  background-color: #111;
  color: #00ffff;
  border: 2px solid #00ffff;
  border-radius: 8px;
  font-size: 16px;
}

button {
  margin-top: 30px;
  padding: 12px 25px;
  font-size: 18px;
  background-color: #00ffff;
  color: #000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 12px #00ffff;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #00cccc;
}

#matchup-result {
  margin-top: 40px;
  font-size: 22px;
  color: #ffffff;
  text-shadow: 0 0 4px #00ffff;
  padding: 20px;
  background-color: #111;
  border: 2px solid #00ffff;
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sim-container {
  color: #00ffff;
  font-family: 'Orbitron', sans-serif;
  padding: 20px;
  background-color: #111;
  border: 1px solid #00ffff;
  border-radius: 10px;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}
.scoreboard {
  font-size: 1.8em;
  margin-bottom: 20px;
}
.momentum-bar {
  height: 10px;
  background: #333;
  margin: 10px 0;
  position: relative;
}
#momentum-fill {
  height: 100%;
  background: #00ffff;
  width: 50%;
  transition: width 0.3s ease;
}
.play-log {
  background-color: #000;
  height: 250px;
  overflow-y: scroll;
  padding: 10px;
  font-size: 0.9em;
  border: 1px solid #444;
  border-radius: 8px;
  margin-bottom: 20px;
} */
body {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #0a0f1f, #1c2331);
  background-attachment: fixed;
  color: #fff;
}

.matchup-section {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.team-selectors {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

select, button {
  padding: 10px;
  font-size: 16px;
  background: #1f2a38;
  color: #00ffff;
  border: 1px solid #00ffff;
  border-radius: 5px;
}

.scoreboard {
  font-size: 24px;
  margin-top: 20px;
  text-shadow: 0 0 10px #00ffff;
}

.play-log {
  background-color: #1f2a38;
  max-height: 300px;
  overflow-y: auto;
  padding: 15px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

.play-log p {
  margin: 5px 0;
  font-size: 14px;
}

.result-box {
  margin-top: 30px;
  font-size: 28px;
  color: #00ff88;
  text-shadow: 0 0 6px #00ff88;
}

#simulation-result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.momentum-bar {
  height: 10px;
  border-radius: 5px;
  margin-bottom: 16px;
  background: linear-gradient(to right, #00ffff 50%, #ff007f 50%);
  transition: background 0.5s ease;
}

.scoreboard {
  font-size: 36px;
  text-shadow: 0 0 10px #0ff;
  animation: pulse 1s infinite alternate;
}

@keyframes pulse {
  from { text-shadow: 0 0 10px #0ff; }
  to   { text-shadow: 0 0 20px #0ff; }
}

button {
  background: linear-gradient(to right, #00f2ff, #00ffe0);
  border: none;
  padding: 12px 20px;
  color: black;
  font-weight: bold;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 10px #00fff7;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00fff7;
}

#simulation-output {
  margin-top: 30px;
  width: 80%;
  max-width: 800px;
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-y: auto;
  max-height: 500px;
}

.play-log {
  margin-top: 20px;
  white-space: pre-wrap;
}

#play-by-play-log {
  margin-top: 20px;
  font-size: 1rem;
  color: #fff;
  max-height: 400px;
  overflow-y: auto;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

#analyst-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 120px;  /* Adjust size as needed */
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px cyan;
}

#analyst-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: opacity 0.3s ease;
}

.analyst {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
}


.speech-box {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #00eaff;
  font-family: 'Orbitron', sans-serif;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid #00eaff;
  max-width: 80%;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 0 15px #00eaff;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.hidden {
  display: none;
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: #222;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    z-index: 1000;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

nav a:hover {
  color: #00ffff; /* Neon blue */
  text-shadow: 0 0 6px #00ffff, 0 0 12px #00ffff;
  font-weight: 700;
}

nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00ffff;
  transition: width 0.3s;
  margin: 4px auto 0;
}

nav a:hover::after {
  width: 60%;
}

#mute-toggle {
  margin-left: 8px;
  transform: scale(1.2);
  cursor: pointer;
}

.fake-scoreboard {
  background: #1e1e1e;
  padding: 12px 16px;
  color: white;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 8px #00ffff;
  min-width: 260px;
}


.fake-scoreboard .game {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}

.fake-scoreboard .team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fake-scoreboard .team img {
  width: 24px;
  height: 24px;
}

.fake-scoreboard .team strong {
  font-size: 20px;
  margin-left: 4px;
  color: #00ffff;
}

.fake-scoreboard .vs {
  color: #999;
  font-size: 18px;
}

.fake-scoreboard .status {
  font-size: 14px;
  color: #aaa;
}

.team.winner {
  border: 1px solid #00ffff;
  box-shadow: 0 0 8px #00ffff;
  border-radius: 4px;
  padding: 2px 6px;
}

.scoreboard-row {
  display: flex;
  flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
  gap: 20px; /* spacing between game boxes */
  justify-content: center;
  padding: 10px 0;
}