/* Basic dramatic styling */
body {
  background-color: #000;
  color: #00CDFF;
  font-family: 'Trebuchet MS', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

.container {
  max-width: 750px;
  padding: 20px;
}

h1 {
  margin-bottom: 10px;
  font-size: 24px;
  letter-spacing: 2px;
}

#quote {
  font-size: 25px;
  line-height: 1.4;
  margin: 10px 0;
  min-height: 30px; /* avoids jump when text changes */
}

#episode-info {
  font-size: 0.9em;
  margin-bottom: 15px;
}

button {
  background-color: #00CDFF;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.12s ease;
}

button:active { transform: scale(0.98); }
button:hover { filter: brightness(0.95); }
