/* style/games-lottery-games.css */
.page-games-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Primary dark background */
  line-height: 1.6;
}

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

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

.page-games-lottery-games__section--dark {
  background-color: #282844; /* Slightly lighter dark for contrast */
}

.page-games-lottery-games__hero-section {
  background: linear-gradient(135deg, #1A1A2E, #361A4E);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-games-lottery-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-games-lottery-games__hero-section > .page-games-lottery-games__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-games-lottery-games__hero-title {
  font-size: 3.5em;
  color: #E94560; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-games-lottery-games__hero-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-games-lottery-games__btn--primary {
  background-color: #E94560; /* Accent color for primary button */
  color: #FFFFFF;
  border: 2px solid #E94560;
}

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

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

.page-games-lottery-games__btn--secondary:hover {
  background-color: rgba(233, 69, 96, 0.1);
  transform: translateY(-2px);
}

.page-games-lottery-games__btn--text {
  background-color: transparent;
  color: #F0F0F0;
  border: 2px solid transparent;
}

.page-games-lottery-games__btn--text:hover {
  color: #E94560;
  border-color: #E94560;
  transform: translateY(-2px);
}

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

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

.page-games-lottery-games__section-title {
  font-size: 2.5em;
  color: #E94560; /* Accent color for section titles */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-games-lottery-games__text-content {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-games-lottery-games__feature-item {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-lottery-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-games-lottery-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E94560);
}

.page-games-lottery-games__feature-heading {
  font-size: 1.5em;
  color: #E94560;
  margin-bottom: 10px;
}

.page-games-lottery-games__feature-text {
  font-size: 1em;
  color: #C0C0C0;
}

.page-games-lottery-games__game-category {
  background-color: #282844;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-games-lottery-games__game-category:nth-child(even) {
  background-color: #1A1A2E;
}

.page-games-lottery-games__category-heading {
  font-size: 2em;
  color: #E94560;
  margin-bottom: 20px;
}

.page-games-lottery-games__category-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-games-lottery-games__category-description {
  font-size: 1.1em;
  color: #D0D0D0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-games-lottery-games__step-item {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page-games-lottery-games__step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #E94560;
  color: #FFFFFF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-games-lottery-games__step-heading {
  font-size: 1.4em;
  color: #E94560;
  margin-bottom: 10px;
}

.page-games-lottery-games__step-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 15px;
}

.page-games-lottery-games__link {
  color: #E94560;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-games-lottery-games__link:hover {
  color: #F56E81;
  text-decoration: underline;
}

.page-games-lottery-games__process-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-games-lottery-games__promo-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-games-lottery-games__promo-list li {
  background-color: #282844;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #D0D0D0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-games__promo-highlight {
  color: #E94560;
  font-weight: bold;
}

.page-games-lottery-games__cta-center {
  text-align: center;
  margin-top: 30px;
}

.page-games-lottery-games__promo-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-games-lottery-games__safety-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-games-lottery-games__safety-list li {
  background-color: #1A1A2E;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #D0D0D0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-games__safety-highlight {
  color: #E94560;
  font-weight: bold;
}

.page-games-lottery-games__security-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-games-lottery-games__app-features {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-games-lottery-games__app-heading {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 20px;
}

.page-games-lottery-games__app-features ul {
  list-style: disc;
  padding-left: 25px;
}

.page-games-lottery-games__app-features li {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 10px;
}

.page-games-lottery-games__app-highlight {
  color: #F0F0F0;
  font-weight: bold;
}

.page-games-lottery-games__app-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

.page-games-lottery-games__faq-item {
  background-color: #1A1A2E;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-games-lottery-games__faq-question {
  font-size: 1.3em;
  color: #E94560;
  margin-bottom: 10px;
}

.page-games-lottery-games__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
}

.page-games-lottery-games__cta-final {
  background: linear-gradient(45deg, #E94560, #F56E81);
  padding: 80px 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-lottery-games__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-games-lottery-games__cta-final > .page-games-lottery-games__container {
  position: relative;
  z-index: 1;
}

.page-games-lottery-games__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-games-lottery-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-lottery-games__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-games-lottery-games__hero-title {
    font-size: 2.5em;
  }

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

  .page-games-lottery-games__hero-description,
  .page-games-lottery-games__text-content,
  .page-games-lottery-games__category-description,
  .page-games-lottery-games__feature-text,
  .page-games-lottery-games__step-text,
  .page-games-lottery-games__promo-list li,
  .page-games-lottery-games__safety-list li,
  .page-games-lottery-games__app-features li,
  .page-games-lottery-games__faq-answer,
  .page-games-lottery-games__cta-description {
    font-size: 1em;
  }

  .page-games-lottery-games__hero-cta-group,
  .page-games-lottery-games__cta-group {
    flex-direction: column;
    align-items: center;
  }

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

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

  .page-games-lottery-games__game-category,
  .page-games-lottery-games__faq-item {
    padding: 25px;
  }

  .page-games-lottery-games__category-heading {
    font-size: 1.8em;
  }

  .page-games-lottery-games__feature-grid,
  .page-games-lottery-games__steps-grid,
  .page-games-lottery-games__faq-grid {
    grid-template-columns: 1fr;
  }

}

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

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

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

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

  .page-games-lottery-games__feature-heading,
  .page-games-lottery-games__step-heading,
  .page-games-lottery-games__faq-question,
  .page-games-lottery-games__app-heading {
    font-size: 1.2em;
  }
}