/* style/lottery-games.css */
.page-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2240; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-lottery-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2240 0%, #1A3F6F 100%); /* Gradient background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-lottery-games__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 700px; /* Limit image width */
  height: auto;
}

.page-lottery-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-lottery-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.9;
}

.page-lottery-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-lottery-games__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;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-lottery-games__btn--primary {
  background-color: #FFD700; /* Accent gold color */
  color: #0A2240;
  border-color: #FFD700;
}

.page-lottery-games__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-lottery-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-lottery-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2240;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-lottery-games__btn--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-lottery-games__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-lottery-games__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  font-weight: bold;
}

.page-lottery-games__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games__intro,
.page-lottery-games__game-types,
.page-lottery-games__how-to-play,
.page-lottery-games__promotions,
.page-lottery-games__app-download,
.page-lottery-games__faq,
.page-lottery-games__cta-final {
  padding: 60px 0;
}

.page-lottery-games__intro {
  background-color: #0A2240;
}

.page-lottery-games__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-lottery-games__feature-item {
  background-color: #1A3F6F; /* Slightly lighter blue for feature cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-lottery-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-lottery-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

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

.page-lottery-games__feature-description {
  font-size: 1em;
  color: #D0D0D0;
}

.page-lottery-games__game-types {
  background-color: #0A2240;
}

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

.page-lottery-games__game-card {
  background-color: #1A3F6F;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-lottery-games__game-card:hover {
  transform: translateY(-10px);
}

.page-lottery-games__game-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  align-self: center;
}

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

.page-lottery-games__game-description {
  font-size: 1em;
  color: #D0D0D0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-lottery-games__how-to-play {
  background-color: #0A2240;
}

.page-lottery-games__steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-lottery-games__step-item {
  background-color: #1A3F6F;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-lottery-games__step-icon-wrapper {
  background-color: #FFD700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

.page-lottery-games__step-icon {
  font-size: 2em;
  font-weight: bold;
  color: #0A2240;
}

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

.page-lottery-games__step-description {
  font-size: 1em;
  color: #D0D0D0;
}

.page-lottery-games__cta-buttons {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-lottery-games__promotions {
  background-color: #0A2240;
}

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

.page-lottery-games__promo-card {
  background-color: #1A3F6F;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-lottery-games__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  align-self: center;
}

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

.page-lottery-games__promo-description {
  font-size: 1em;
  color: #D0D0D0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-lottery-games__app-download {
  background-color: #0A2240;
}

.page-lottery-games__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-lottery-games__app-text {
  max-width: 700px;
  text-align: center;
}

.page-lottery-games__app-text p {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 25px;
}

.page-lottery-games__app-features-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
  color: #D0D0D0;
  display: inline-block; /* For centering list */
}

.page-lottery-games__app-features-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-lottery-games__app-features-list i {
  color: #FFD700;
  margin-right: 10px;
}

.page-lottery-games__app-download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-lottery-games__btn--app {
  background-color: #FFD700;
  color: #0A2240;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  font-size: 1em;
}

.page-lottery-games__btn--app i {
  font-size: 1.2em;
}

.page-lottery-games__app-image-wrapper {
  width: 100%;
  max-width: 400px;
}

.page-lottery-games__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-lottery-games__faq {
  background-color: #0A2240;
}

.page-lottery-games__faq-list {
  margin-top: 40px;
}

.page-lottery-games__faq-item {
  background-color: #1A3F6F;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-lottery-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-lottery-games__faq-answer {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-top: 15px;
  display: none;
  line-height: 1.8;
}

.page-lottery-games__faq-answer.active {
  display: block;
}

.page-lottery-games__cta-final {
  background-color: #1A3F6F; /* Darker blue for final CTA */
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-lottery-games__cta-final .page-lottery-games__section-title {
  font-size: 3em;
  margin-bottom: 25px;
  color: #FFFFFF;
  padding-top: 0;
}

.page-lottery-games__cta-final .page-lottery-games__section-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games__hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-lottery-games__hero-title {
    font-size: 2.8em;
  }

  .page-lottery-games__hero-description {
    font-size: 1.1em;
  }

  .page-lottery-games__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-lottery-games__section-title {
    font-size: 2.2em;
    padding-top: 40px;
  }

  .page-lottery-games__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-lottery-games__features,
  .page-lottery-games__game-grid,
  .page-lottery-games__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }

  .page-lottery-games__steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-lottery-games__app-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-lottery-games__app-text,
  .page-lottery-games__app-image-wrapper {
    max-width: 100%;
  }

  .page-lottery-games__cta-final .page-lottery-games__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-lottery-games__hero-title {
    font-size: 2.2em;
  }

  .page-lottery-games__hero-description {
    font-size: 1em;
  }

  .page-lottery-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery-games__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-lottery-games__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

  .page-lottery-games__section-subtitle {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-lottery-games__features,
  .page-lottery-games__game-grid,
  .page-lottery-games__promo-grid,
  .page-lottery-games__steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-lottery-games__feature-item, .page-lottery-games__game-card, .page-lottery-games__promo-card, .page-lottery-games__step-item, .page-lottery-games__faq-item {
    padding: 20px;
  }

  .page-lottery-games__feature-title, .page-lottery-games__game-title, .page-lottery-games__promo-title, .page-lottery-games__step-title, .page-lottery-games__faq-question {
    font-size: 1.5em;
  }

  .page-lottery-games__cta-final .page-lottery-games__section-title {
    font-size: 2em;
  }

  .page-lottery-games__cta-final .page-lottery-games__section-subtitle {
    font-size: 1.1em;
  }

  .page-lottery-games__app-download-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery-games__btn--app {
    width: 80%;
    max-width: 250px;
  }
}

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

  .page-lottery-games__section-title {
    font-size: 1.6em;
  }

  .page-lottery-games__feature-title, .page-lottery-games__game-title, .page-lottery-games__promo-title, .page-lottery-games__step-title, .page-lottery-games__faq-question {
    font-size: 1.3em;
  }

  .page-lottery-games__cta-final .page-lottery-games__section-title {
    font-size: 1.8em;
  }
}