/* style/game-reviews-gi8-lottery.css */
.page-game-reviews-gi8-lottery {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-game-reviews-gi8-lottery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-reviews-gi8-lottery__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4f91 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-gi8-lottery__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for title */
  font-weight: bold;
}

.page-game-reviews-gi8-lottery__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-game-reviews-gi8-lottery__hero-btn,
.page-game-reviews-gi8-lottery__cta-btn {
  display: inline-block;
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-reviews-gi8-lottery__hero-btn:hover,
.page-game-reviews-gi8-lottery__cta-btn:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  color: #002244; /* Slightly darker blue on hover */
}

.page-game-reviews-gi8-lottery__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-game-reviews-gi8-lottery__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-game-reviews-gi8-lottery__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-reviews-gi8-lottery__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  border-radius: 2px;
}

.page-game-reviews-gi8-lottery__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-game-reviews-gi8-lottery__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-reviews-gi8-lottery__list li {
  background-color: #e9f3f9;
  border-left: 5px solid #003366;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-game-reviews-gi8-lottery__list-title {
  color: #003366;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-reviews-gi8-lottery__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-game-reviews-gi8-lottery__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-reviews-gi8-lottery__hero-title {
    font-size: 2.5em;
  }

  .page-game-reviews-gi8-lottery__hero-description {
    font-size: 1em;
  }

  .page-game-reviews-gi8-lottery__section-title {
    font-size: 2em;
  }

  .page-game-reviews-gi8-lottery__hero-btn,
  .page-game-reviews-gi8-lottery__cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews-gi8-lottery__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-gi8-lottery__hero-title {
    font-size: 2em;
  }

  .page-game-reviews-gi8-lottery__hero-description {
    font-size: 0.9em;
  }

  .page-game-reviews-gi8-lottery__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-gi8-lottery__list li {
    padding: 15px;
  }

  .page-game-reviews-gi8-lottery__list-title {
    font-size: 1.3em;
  }
}