.page-games-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F1D3B; /* Slightly lighter dark blue for overall background */
}

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

.page-games-lottery__hero-section {
  background: linear-gradient(135deg, #1A2B5B, #0F1D3B);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero titles */
  position: relative;
  overflow: hidden;
}

.page-games-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-games-lottery__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #C0C0C0; /* Lighter gray for subtitle */
}

.page-games-lottery__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-games-lottery__btn--primary {
  background-color: #FFD700;
  color: #1A2B5B;
  border: 2px solid #FFD700;
}

.page-games-lottery__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-games-lottery__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-games-lottery__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-games-lottery__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-games-lottery__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-games-lottery__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-games-lottery__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #C0C0C0;
}

.page-games-lottery__introduction-section,
.page-games-lottery__game-types-section,
.page-games-lottery__why-choose-section,
.page-games-lottery__promotions-section,
.page-games-lottery__how-to-play-section,
.page-games-lottery__faq-section {
  padding: 80px 0;
  background-color: #1A2B5B; /* Primary dark blue for section backgrounds */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-games-lottery__introduction-section {
  background-color: #0F1D3B; /* Slightly different background for visual separation */
}

.page-games-lottery__grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-games-lottery__grid-layout--reverse {
  grid-template-areas: "image content";
}

.page-games-lottery__grid-layout--reverse .page-games-lottery__content-block {
  grid-area: content;
}

.page-games-lottery__grid-layout--reverse .page-games-lottery__image-block {
  grid-area: image;
}

.page-games-lottery__content-block p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-games-lottery__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-games-lottery__game-card {
  background-color: #0F1D3B;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #2C3E50;
}

.page-games-lottery__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-games-lottery__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-games-lottery__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-lottery__game-description {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-games-lottery__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-games-lottery__feature-list li {
  background-color: #0F1D3B;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-games-lottery__highlight-text {
  color: #FFD700;
}

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

.page-games-lottery__promo-card {
  background-color: #0F1D3B;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2C3E50;
}

.page-games-lottery__promo-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-games-lottery__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-lottery__promo-text {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-games-lottery__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-games-lottery__steps-list li {
  background-color: #0F1D3B;
  margin-bottom: 25px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-games-lottery__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2B5B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-games-lottery__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-games-lottery__steps-list p {
  color: #E0E0E0;
  line-height: 1.7;
}

.page-games-lottery__steps-list p a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lottery__steps-list p a:hover {
  text-decoration: underline;
}

.page-games-lottery__faq-item {
  background-color: #0F1D3B;
  border: 1px solid #2C3E50;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
}

.page-games-lottery__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-games-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-games-lottery__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-games-lottery__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
  padding-top: 0;
}

.page-games-lottery__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-games-lottery__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-games-lottery__faq-answer a:hover {
  text-decoration: underline;
}

.page-games-lottery__cta-banner {
  background: linear-gradient(90deg, #1A2B5B, #0F1D3B);
  padding: 60px 0;
  text-align: center;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-games-lottery__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-games-lottery__cta-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-lottery__grid-layout {
    grid-template-columns: 1fr;
  }

  .page-games-lottery__grid-layout--reverse {
    grid-template-areas: none;
  }

  .page-games-lottery__hero-title {
    font-size: 2.8em;
  }

  .page-games-lottery__hero-subtitle {
    font-size: 1.2em;
  }

  .page-games-lottery__section-title {
    font-size: 2em;
  }

  .page-games-lottery__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-games-lottery__hero-section,
  .page-games-lottery__introduction-section,
  .page-games-lottery__game-types-section,
  .page-games-lottery__why-choose-section,
  .page-games-lottery__promotions-section,
  .page-games-lottery__how-to-play-section,
  .page-games-lottery__faq-section,
  .page-games-lottery__cta-banner {
    padding: 60px 0;
  }

  .page-games-lottery__hero-title {
    font-size: 2.2em;
  }

  .page-games-lottery__hero-subtitle {
    font-size: 1em;
  }

  .page-games-lottery__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-games-lottery__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-games-lottery__section-title {
    font-size: 1.8em;
  }

  .page-games-lottery__section-description {
    font-size: 0.95em;
  }

  .page-games-lottery__game-card,
  .page-games-lottery__promo-card {
    padding: 20px;
  }

  .page-games-lottery__step-title {
    font-size: 1.3em;
  }

  .page-games-lottery__steps-list li {
    padding-left: 60px;
  }

  .page-games-lottery__steps-list li::before {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .page-games-lottery__faq-question {
    font-size: 1.1em;
  }

  .page-games-lottery__cta-title {
    font-size: 2em;
  }

  .page-games-lottery__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-games-lottery__hero-title {
    font-size: 1.8em;
  }

  .page-games-lottery__hero-subtitle {
    font-size: 0.9em;
  }

  .page-games-lottery__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-games-lottery__section-title {
    font-size: 1.5em;
  }

  .page-games-lottery__game-card,
  .page-games-lottery__promo-card {
    padding: 15px;
  }

  .page-games-lottery__cta-title {
    font-size: 1.8em;
  }

  .page-games-lottery__cta-description {
    font-size: 1em;
  }
}