* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f7f7f7;
}

nav {
  height: 90px;
  background: #ff9800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
}

.logo img {
  height: 55px;
}

.back-btn {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  position: relative;
  height: 100vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
}

.overlay span {
  background: #ff9800;
  padding: 10px 20px;
  border-radius: 999px;
}

.overlay h1 {
  font-size: 5rem;
  margin: 20px 0;
}

.overlay p {
  font-size: 1.3rem;
}

.about {
  padding: 100px 10%;
  text-align: center;
}

.about h2 {
  color: #ff9800;
  margin-bottom: 25px;
}

.games {
  padding: 100px 10%;
}

.games h2 {
  text-align: center;
  margin-bottom: 50px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.game-card {
  background: white;
  padding: 50px;
  border-radius: 25px;
  text-align: center;
  font-size: 3rem;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.game-card:hover {
  transform: translateY(-10px);
}

.game-card h3 {
  font-size: 1.2rem;
  margin-top: 15px;
}

.schedule {
  padding: 100px 10%;
}

.timeline {
  display: grid;
  gap: 25px;
}

.event {
  background: white;
  padding: 30px;
  border-left: 5px solid #ff9800;
  border-radius: 15px;
}

.event span {
  color: #ff9800;
  font-weight: 600;
}

.cta {
  background: #ff9800;
  color: white;
  text-align: center;
  padding: 100px 10%;
}

.cta button {
  margin-top: 25px;
  border: none;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}
