/* style/game-reviews-lottery-games.css */

.page-game-reviews-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-game-reviews-lottery-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-lottery-games__hero {
  background: linear-gradient(135deg, #2D3E50, #F39C12);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-lottery-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:lottery,abstract,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-lottery-games__hero .page-game-reviews-lottery-games__container {
  position: relative;
  z-index: 1;
}

.page-game-reviews-lottery-games__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.page-game-reviews-lottery-games__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #eee;
}

.page-game-reviews-lottery-games__cta-button {
  display: inline-block;
  background-color: #F39C12; /* Auxiliary color */
  color: #2D3E50; /* Text on auxiliary color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-reviews-lottery-games__cta-button:hover {
  background-color: #e08e0b;
  transform: translateY(-3px);
}

.page-game-reviews-lottery-games__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-reviews-lottery-games__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-game-reviews-lottery-games__section {
  padding: 60px 0;
}

.page-game-reviews-lottery-games__section--alt-bg {
  background-color: #ebebeb;
}

.page-game-reviews-lottery-games__section--faq-bg {
  background-color: #2D3E50;
  color: #fff;
}

.page-game-reviews-lottery-games__section-title {
  font-size: 2.5em;
  color: #2D3E50; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-game-reviews-lottery-games__section--faq-bg .page-game-reviews-lottery-games__section-title {
  color: #F39C12; /* Auxiliary color for titles on dark background */
}

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

.page-game-reviews-lottery-games__content-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-reviews-lottery-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-lottery-games__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-lottery-games__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  max-width: 400px;
}

.page-game-reviews-lottery-games__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
  max-width: 400px;
}

.page-game-reviews-lottery-games__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-reviews-lottery-games__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-lottery-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-lottery-games__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-reviews-lottery-games__card-title {
  font-size: 1.5em;
  color: #2D3E50; /* Main color */
  margin-bottom: 15px;
}

.page-game-reviews-lottery-games__card-text {
  font-size: 1em;
  color: #555;
}

.page-game-reviews-lottery-games__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-reviews-lottery-games__list li {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 45px;
}

.page-game-reviews-lottery-games__list li::before {
  content: counter(list-item);
  counter-increment: list-item;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F39C12;
  color: #2D3E50;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-game-reviews-lottery-games__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-reviews-lottery-games__checklist li {
  background-color: #fff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
  position: relative;
  padding-left: 40px;
}

.page-game-reviews-lottery-games__checklist li::before {
  content: '✔';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #F39C12;
  font-weight: bold;
  font-size: 1.2em;
}

.page-game-reviews-lottery-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-reviews-lottery-games__promo-card {
  background-color: #fff;
  border: 2px solid #F39C12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-game-reviews-lottery-games__promo-card:hover {
  transform: translateY(-7px);
}

.page-game-reviews-lottery-games__promo-title {
  font-size: 1.6em;
  color: #2D3E50;
  margin-bottom: 15px;
}

.page-game-reviews-lottery-games__promo-text {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-game-reviews-lottery-games__promo-button {
  display: inline-block;
  background-color: #2D3E50; /* Main color */
  color: #fff; /* Text on main color */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-reviews-lottery-games__promo-button:hover {
  background-color: #1a2a3a;
}

.page-game-reviews-lottery-games__promo-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #666;
}

.page-game-reviews-lottery-games__features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-game-reviews-lottery-games__features-list li {
  background-color: #fff;
  padding: 18px 25px;
  border-left: 5px solid #F39C12;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-game-reviews-lottery-games__faq-item {
  background-color: #3a4f65; /* Darker shade of main color */
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-lottery-games__faq-question {
  font-size: 1.3em;
  color: #F39C12; /* Auxiliary color */
  margin-bottom: 10px;
  cursor: pointer;
}

.page-game-reviews-lottery-games__faq-answer {
  font-size: 1em;
  color: #ddd;
  display: none; /* Hidden by default, will be toggled by JS */
}

.page-game-reviews-lottery-games__faq-question.active + .page-game-reviews-lottery-games__faq-answer {
  display: block;
}

.page-game-reviews-lottery-games__final-cta {
  background-color: #2D3E50;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-lottery-games__final-cta .page-game-reviews-lottery-games__section-title {
  color: #F39C12;
}

.page-game-reviews-lottery-games__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #eee;
}

.page-game-reviews-lottery-games__disclaimer {
  font-size: 0.9em;
  color: #aaa;
  margin-top: 30px;
}

.page-game-reviews-lottery-games .highlight {
  color: #F39C12;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-lottery-games__title {
    font-size: 2.5em;
  }
  .page-game-reviews-lottery-games__subtitle {
    font-size: 1.2em;
  }
  .page-game-reviews-lottery-games__section-title {
    font-size: 2em;
  }
  .page-game-reviews-lottery-games__image--right,
  .page-game-reviews-lottery-games__image--left {
    float: none;
    width: 100%;
    margin: 30px 0;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-lottery-games__hero {
    padding: 60px 0;
  }
  .page-game-reviews-lottery-games__title {
    font-size: 2em;
  }
  .page-game-reviews-lottery-games__subtitle {
    font-size: 1em;
  }
  .page-game-reviews-lottery-games__section {
    padding: 40px 0;
  }
  .page-game-reviews-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery-games__card-grid,
  .page-game-reviews-lottery-games__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-lottery-games__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-reviews-lottery-games__cta-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-game-reviews-lottery-games__list li,
  .page-game-reviews-lottery-games__checklist li,
  .page-game-reviews-lottery-games__features-list li {
    font-size: 0.95em;
  }
}