/* style/games-lottery-games.css */
.page-games-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #121212;
  line-height: 1.6;
}

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

.page-games-lottery-games__hero {
  background: linear-gradient(135deg, #1A2E47, #000000);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-lottery-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
}

.page-games-lottery-games__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-games-lottery-games__section {
  padding: 60px 0;
}

.page-games-lottery-games__section--about {
  background-color: #1A2E47;
}

.page-games-lottery-games__section--games {
  background-color: #000000;
}

.page-games-lottery-games__section--guide {
  background-color: #1A2E47;
}

.page-games-lottery-games__section--promo {
  background-color: #000000;
}

.page-games-lottery-games__section--app {
  background-color: #1A2E47;
}

.page-games-lottery-games__section--safety {
  background-color: #000000;
}

.page-games-lottery-games__section--support {
  background-color: #1A2E47;
}

.page-games-lottery-games__section--faq {
  background-color: #000000;
}

.page-games-lottery-games__section--cta {
  background: linear-gradient(135deg, #FFD700, #1A2E47);
  color: #1A2E47;
  text-align: center;
  padding: 80px 0;
}

.page-games-lottery-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-games-lottery-games__section--cta .page-games-lottery-games__section-title {
  color: #1A2E47;
}

.page-games-lottery-games__subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #B0B0B0;
}

.page-games-lottery-games__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-games-lottery-games__button--primary {
  background-color: #FFD700;
  color: #1A2E47;
  border: 2px solid #FFD700;
}

.page-games-lottery-games__button--primary:hover {
  background-color: #E0B500;
  border-color: #E0B500;
  transform: translateY(-2px);
}

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

.page-games-lottery-games__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-2px);
}

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

.page-games-lottery-games__button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

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

@media (min-width: 768px) {
  .page-games-lottery-games__grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-games-lottery-games__grid--reverse {
    grid-template-areas: "image content";
  }
  .page-games-lottery-games__grid--reverse .page-games-lottery-games__content-block { grid-area: content; }
  .page-games-lottery-games__grid--reverse .page-games-lottery-games__image-block { grid-area: image; }
}

.page-games-lottery-games__grid--3-cols {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-games-lottery-games__grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-games-lottery-games__image-block {
  text-align: center;
}

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

.page-games-lottery-games__content-block p {
  margin-bottom: 20px;
  color: #B0B0B0;
}

.page-games-lottery-games__content-block h2 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 25px;
}

.page-games-lottery-games__game-card {
  background-color: #282828;
  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;
}

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

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

.page-games-lottery-games__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-lottery-games__card-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-games-lottery-games__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1A2E47;
  color: #FFD700;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #1A2E47;
}

.page-games-lottery-games__card-button:hover {
  background-color: #FFD700;
  color: #1A2E47;
  border-color: #FFD700;
}

.page-games-lottery-games__steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-games-lottery-games__steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-games-lottery-games__steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-games-lottery-games__step-card {
  background-color: #282828;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-games__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A2E47;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-games-lottery-games__step-card p {
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-games-lottery-games__features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-games-lottery-games__features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-games-lottery-games__feature-card {
  background-color: #282828;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

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

.page-games-lottery-games__feature-card p {
  color: #B0B0B0;
}

.page-games-lottery-games__safety-text {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #B0B0B0;
}

.page-games-lottery-games__faq-item {
  background-color: #1A2E47;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-games-lottery-games__faq-answer {
  font-size: 1em;
  color: #D0D0D0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-games-lottery-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 10px;
}

@media (max-width: 767px) {
  .page-games-lottery-games__hero-title {
    font-size: 2.5em;
  }
  .page-games-lottery-games__hero-description {
    font-size: 1em;
  }
  .page-games-lottery-games__section-title {
    font-size: 2em;
  }
  .page-games-lottery-games__content-block h2 {
    text-align: center;
  }
  .page-games-lottery-games__hero {
    padding: 80px 0;
  }
  .page-games-lottery-games__section {
    padding: 40px 0;
  }
  .page-games-lottery-games__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}