/* style/game-types-lottery-games.css */
.page-game-types-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0E1A2B; /* A slightly lighter variant of #1A2E44 for main background */
}

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

.page-game-types-lottery-games__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #0E1A2B 100%);
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-game-types-lottery-games__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-lottery-games__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-game-types-lottery-games__section {
  padding: 80px 0;
  background-color: #1A2E44;
  margin-bottom: 20px;
}

.page-game-types-lottery-games__section:nth-of-type(odd) {
    background-color: #0E1A2B;
}

.page-game-types-lottery-games__section--dark {
  background-color: #1A2E44;
}

.page-game-types-lottery-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-game-types-lottery-games__section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-game-types-lottery-games__section-description--light {
    color: #F0F0F0;
}

.page-game-types-lottery-games__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-game-types-lottery-games__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-game-types-lottery-games__text-content {
  flex: 1;
  color: #E0E0E0;
  line-height: 1.8;
}

.page-game-types-lottery-games__text-content h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-game-types-lottery-games__text-content p {
    margin-bottom: 15px;
}

.page-game-types-lottery-games__image-wrapper {
  flex: 1;
  text-align: center;
}

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

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

.page-game-types-lottery-games__game-card {
  background-color: #283F57; /* Slightly lighter than main for card background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-game-types-lottery-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-types-lottery-games__game-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-game-types-lottery-games__game-card-description {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-game-types-lottery-games__step-card {
  background-color: #283F57;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-types-lottery-games__step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-game-types-lottery-games__step-card p {
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-game-types-lottery-games__advantage-item {
  background-color: #283F57;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-game-types-lottery-games__advantage-item p {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-game-types-lottery-games__promo-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 60px;
  text-align: left;
}

.page-game-types-lottery-games__promo-list li {
  background-color: #283F57;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.page-game-types-lottery-games__promo-list li strong {
  color: #FFD700;
}

.page-game-types-lottery-games__faq-items {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-game-types-lottery-games__faq-item {
  background-color: #283F57;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-game-types-lottery-games__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #3A506B;
  margin-top: 10px;
}

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

.page-game-types-lottery-games__cta-section {
  background: linear-gradient(135deg, #FFD700 0%, #B39700 100%); /* Gold gradient for CTA */
  padding: 80px 0;
  text-align: center;
  color: #1A2E44; /* Dark text for light background */
}

.page-game-types-lottery-games__cta-title {
  font-size: 3em;
  color: #1A2E44;
  margin-bottom: 20px;
}

.page-game-types-lottery-games__cta-subtitle {
  font-size: 1.2em;
  color: #3A506B;
  max-width: 700px;
  margin: 0 auto 40px;
}

.page-game-types-lottery-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-game-types-lottery-games__btn--primary {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-game-types-lottery-games__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-game-types-lottery-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-types-lottery-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
}

.page-game-types-lottery-games__btn--tertiary {
    background-color: #3A506B;
    color: #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-game-types-lottery-games__btn--tertiary:hover {
    background-color: #4A607B;
    transform: translateY(-2px);
}

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

.page-game-types-lottery-games__keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-lottery-games__hero-title {
    font-size: 2.8em;
  }
  .page-game-types-lottery-games__section-title {
    font-size: 2em;
  }
  .page-game-types-lottery-games__content-grid {
    flex-direction: column;
  }
  .page-game-types-lottery-games__content-grid--reverse {
    flex-direction: column-reverse;
  }
  .page-game-types-lottery-games__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-types-lottery-games__hero-section,
  .page-game-types-lottery-games__section,
  .page-game-types-lottery-games__cta-section {
    padding: 60px 0;
  }
  .page-game-types-lottery-games__hero-title {
    font-size: 2.2em;
  }
  .page-game-types-lottery-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-types-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-lottery-games__game-cards-grid,
  .page-game-types-lottery-games__steps-grid,
  .page-game-types-lottery-games__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-lottery-games__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-game-types-lottery-games__hero-section,
  .page-game-types-lottery-games__section,
  .page-game-types-lottery-games__cta-section {
    padding: 40px 0;
  }
  .page-game-types-lottery-games__hero-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery-games__section-title {
    font-size: 1.5em;
  }
  .page-game-types-lottery-games__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-game-types-lottery-games__promo-list li,
  .page-game-types-lottery-games__faq-item {
    padding: 15px 20px;
  }
  .page-game-types-lottery-games__faq-question {
    font-size: 1.2em;
  }
  .page-game-types-lottery-games__cta-title {
    font-size: 1.8em;
  }
}