/* style/game-reviews-lottery.css */
.page-game-reviews-lottery {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark backgrounds */
  line-height: 1.6;
  background-color: #0A2463; /* Main background */
}

.page-game-reviews-lottery a {
  text-decoration: none;
  color: #E3B505; /* Accent color for links */
}

.page-game-reviews-lottery a:hover {
  text-decoration: underline;
  color: #FFD700; /* Slightly brighter on hover */
}

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

.page-game-reviews-lottery__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E85 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #E3B505;
}

.page-game-reviews-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-lottery__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-game-reviews-lottery__section {
  padding: 60px 0;
  background-color: #0A2463; /* Consistent dark background */
}

.page-game-reviews-lottery__section:nth-of-type(even) {
  background-color: #1A3E85; /* Slightly different shade for contrast */
}

.page-game-reviews-lottery__section-title {
  font-size: 2.5em;
  color: #E3B505; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-reviews-lottery__section-description {
  font-size: 1.1em;
  color: #D0D0D0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-reviews-lottery__btn--primary {
  background-color: #E3B505; /* Accent color for primary buttons */
  color: #0A2463; /* Dark text on accent background */
}

.page-game-reviews-lottery__btn--primary:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(227, 181, 5, 0.4);
}

.page-game-reviews-lottery__btn--secondary {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-reviews-lottery__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-2px);
}

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

.page-game-reviews-lottery__btn--inline {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 10px;
}

.page-game-reviews-lottery__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-game-reviews-lottery__text-content {
  flex: 1;
}

.page-game-reviews-lottery__text-content p {
  margin-bottom: 15px;
  color: #D0D0D0;
}

.page-game-reviews-lottery__image-container {
  flex: 1;
  text-align: center;
}

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

.page-game-reviews-lottery__image--small {
    max-width: 60%;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-game-reviews-lottery__game-card {
  background-color: #1A3E85; /* Darker blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-lottery__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 15px #E3B50580; /* Subtle glow */
}

.page-game-reviews-lottery__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

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

.page-game-reviews-lottery__card-text {
  color: #D0D0D0;
  margin-bottom: 25px;
}

.page-game-reviews-lottery__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-reviews-lottery__steps-list li {
  background-color: #1A3E85;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-game-reviews-lottery__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #E3B505;
  color: #0A2463;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-reviews-lottery__step-title {
  font-size: 1.8em;
  color: #E3B505;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-reviews-lottery__steps-list p {
  color: #D0D0D0;
}

.page-game-reviews-lottery__grid--features {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-game-reviews-lottery__feature-card {
  background-color: #1A3E85;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-game-reviews-lottery__feature-title {
  font-size: 1.5em;
  color: #E3B505;
  margin-bottom: 10px;
}

.page-game-reviews-lottery__feature-card p {
  color: #D0D0D0;
}

.page-game-reviews-lottery__promo-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-reviews-lottery__promo-list li {
  background-color: #1A3E85;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  color: #D0D0D0;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #E3B505;
}

.page-game-reviews-lottery__promo-list li strong {
    color: #E3B505;
}

.page-game-reviews-lottery__faq {
    padding-bottom: 80px;
}

.page-game-reviews-lottery__faq-item {
  background-color: #1A3E85;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-lottery__faq-question {
  font-size: 1.3em;
  color: #E3B505;
  padding: 20px 30px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(227, 181, 5, 0.2);
}

.page-game-reviews-lottery__faq-question:hover {
    background-color: #2b57a0;
}

.page-game-reviews-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-reviews-lottery__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-reviews-lottery__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-reviews-lottery__faq-answer p {
  color: #D0D0D0;
  padding-bottom: 20px;
}

.page-game-reviews-lottery__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
  padding-bottom: 20px;
}

.page-game-reviews-lottery__cta {
  background: linear-gradient(90deg, #E3B505 0%, #FFD700 100%); /* Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: #0A2463; /* Dark text on light background */
  border-top: 5px solid #0A2463;
}

.page-game-reviews-lottery__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2463;
  font-weight: bold;
}

.page-game-reviews-lottery__cta-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
}

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

.page-game-reviews-lottery .keyword {
  font-weight: bold;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 2em;
  }
  .page-game-reviews-lottery__content-wrapper {
    flex-direction: column;
  }
  .page-game-reviews-lottery__image-container {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-game-reviews-lottery__image--small {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-lottery__hero {
    padding: 80px 0;
  }
  .page-game-reviews-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-lottery__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-reviews-lottery__section {
    padding: 40px 0;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-reviews-lottery__grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-lottery__steps-list li {
    padding: 25px 20px 25px 70px;
  }
  .page-game-reviews-lottery__steps-list li::before {
    left: 15px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-game-reviews-lottery__step-title {
    font-size: 1.5em;
  }
  .page-game-reviews-lottery__cta-title {
    font-size: 2.2em;
  }
  .page-game-reviews-lottery__cta-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-lottery__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-game-reviews-lottery__faq-question {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-game-reviews-lottery__faq-question::after {
    right: 20px;
  }
  .page-game-reviews-lottery__faq-answer p {
    padding-bottom: 15px;
  }
  .page-game-reviews-lottery__faq-answer.active {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}