body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to right, #fceabb, #f8b500);
  color: #333;
  margin: 0;
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  color: #f57c00;
  margin-bottom: 0.5rem;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  color: #ff9800;
  margin-bottom: 1rem;
  text-align: center;
}
p{
  text-align: center;
}

.block {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: #fff8e1;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.hero {
  background: #fff3e0;
  text-align: center;
}

.promo-video {
  background: #fff3e0;
  text-align: center;
  padding: 2rem 1rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  margin-top: 1rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.about {
  background: #fffde7;
}

.signup {
  background: #e1f5fe;
}

.teams {
  background: #f1f8e9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.countdown {
  background: #fce4ec;
  text-align: center;
  padding: 2rem 1rem;
}

input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  color: #333;
}

button {
  background-color: #00bcd4;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,188,212,0.3);
}

button:hover {
  background-color: #0097a7;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  background: #e0f7fa;
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-left: 5px solid #00bcd4;
  border-radius: 6px;
}
.waiver {
  background: #fff3e0;
  text-align: center;
}

.waiver-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #00bcd4;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,188,212,0.3);
}

.waiver-button:hover {
  background-color: #0097a7;
}

.games-intro {
  background: #fffde7;
}

.game {
  background: #e1f5fe;
}

.game h2 {
  color: #f57c00;
}

.game p {
  margin-top: 0.5rem;
}
.game-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.game-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background: #fff;
  border-top: 2px solid #f57c00;
  font-size: 0.9rem;
  color: #555;
}

footer a {
  color: #00bcd4;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
main {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
#countdown-timer {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #d81b60;
  letter-spacing: 2px;
}
}
@media (max-width: 768px) {
main {
  margin: auto;
  border-radius: 16px;
}
#countdown-timer {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #d81b60;
  letter-spacing: 2px;
}
}