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

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

.page-game-reviews-lottery__container--center {
  text-align: center;
}

.page-game-reviews-lottery__hero {
  background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-lottery__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:lottery_abstract,numbers,light_effect]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-game-reviews-lottery__hero .page-game-reviews-lottery__container {
  position: relative;
  z-index: 1;
}

.page-game-reviews-lottery__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-lottery__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-reviews-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-reviews-lottery__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0047AB; /* Royal Blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-lottery__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-lottery__btn--secondary {
  background-color: #0047AB; /* Royal Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-game-reviews-lottery__btn--secondary:hover {
  background-color: #003a8a;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 71, 171, 0.4);
}

.page-game-reviews-lottery__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-reviews-lottery__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-game-reviews-lottery__section--why-choose {
  background-color: #e0f2f7; /* Light blue background for this section */
  box-shadow: none;
  border-radius: 0;
  padding: 80px 0;
}

.page-game-reviews-lottery__section--cta-register,
.page-game-reviews-lottery__section--final-cta {
  background-color: #0047AB; /* Royal Blue background */
  color: #ffffff;
  padding: 70px 0;
  border-radius: 10px;
}

.page-game-reviews-lottery__section--cta-register .page-game-reviews-lottery__heading,
.page-game-reviews-lottery__section--final-cta .page-game-reviews-lottery__heading {
  color: #FFD700;
}

.page-game-reviews-lottery__section--cta-register .page-game-reviews-lottery__text,
.page-game-reviews-lottery__section--final-cta .page-game-reviews-lottery__text {
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-game-reviews-lottery__heading {
  font-size: 2.5em;
  color: #0047AB;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-lottery__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-lottery__sub-heading {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 20px;
}

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

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

.page-game-reviews-lottery__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-lottery__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-lottery__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-game-reviews-lottery__card-title {
  font-size: 1.4em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-game-reviews-lottery__game-type {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fefefe;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-game-reviews-lottery__game-type--reverse {
  flex-direction: row-reverse;
}

.page-game-reviews-lottery__game-info {
  flex: 1;
}

.page-game-reviews-lottery__game-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-reviews-lottery__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-lottery__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-game-reviews-lottery__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-reviews-lottery__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
}

.page-game-reviews-lottery__list--responsible li::before {
  content: '⚠️';
  color: #FFD700;
}

.page-game-reviews-lottery__promo-list {
  list-style: disc;
  padding-left: 25px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-game-reviews-lottery__promo-list li {
  margin-bottom: 10px;
}

.page-game-reviews-lottery__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
}

.page-game-reviews-lottery__faq-question {
  font-size: 1.3em;
  color: #0047AB;
  margin-bottom: 10px;
}

.page-game-reviews-lottery__faq-answer {
  font-size: 1.05em;
  color: #555;
}

.page-game-reviews-lottery__faq-answer a {
  color: #0047AB;
  text-decoration: underline;
}

.page-game-reviews-lottery__faq-answer a:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-lottery__title {
    font-size: 2.5em;
  }
  .page-game-reviews-lottery__heading {
    font-size: 2em;
  }
  .page-game-reviews-lottery__game-type {
    flex-direction: column;
    text-align: center;
  }
  .page-game-reviews-lottery__game-type--reverse {
    flex-direction: column;
  }
  .page-game-reviews-lottery__game-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-lottery__title {
    font-size: 2em;
  }
  .page-game-reviews-lottery__subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-lottery__heading {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-lottery__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-reviews-lottery__grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-lottery__section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-lottery__title {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery__subtitle {
    font-size: 1em;
  }
  .page-game-reviews-lottery__heading {
    font-size: 1.5em;
  }
  .page-game-reviews-lottery__btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .page-game-reviews-lottery__btn--secondary {
    margin-top: 0;
  }
}