/* style/games-lottery-games.css */
.page-games-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #0A192F; /* Main text color */
  line-height: 1.6;
}

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

.page-games-lottery-games__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d58 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-games-lottery-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:lottery_pattern,abstract,dark]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

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

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

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

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

.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: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-games-lottery-games__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text */
}

.page-games-lottery-games__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

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

.page-games-lottery-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

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

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

.page-games-lottery-games__section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

.page-games-lottery-games__section:nth-of-type(even) {
  background-color: #FFFFFF;
}

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

.page-games-lottery-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #333333;
}

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

.page-games-lottery-games__grid--2-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-games-lottery-games__feature-card,
.page-games-lottery-games__game-card,
.page-games-lottery-games__strategy-card,
.page-games-lottery-games__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-lottery-games__feature-card:hover,
.page-games-lottery-games__game-card:hover,
.page-games-lottery-games__strategy-card:hover,
.page-games-lottery-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

.page-games-lottery-games__feature-card p,
.page-games-lottery-games__strategy-card p,
.page-games-lottery-games__promo-card p {
  color: #555555;
  font-size: 0.95em;
}

.page-games-lottery-games__list {
  list-style-type: disc;
  text-align: left;
  margin: 20px 0 20px 20px;
  color: #555555;
}

.page-games-lottery-games__list li {
  margin-bottom: 8px;
}

.page-games-lottery-games__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.page-games-lottery-games__step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background-color: #FDFDFD;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-games-lottery-games__step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}

.page-games-lottery-games__step-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-games-lottery-games__step p {
  color: #555555;
  margin-bottom: 15px;
}

.page-games-lottery-games__final-cta {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #333333;
}

.page-games-lottery-games__link-inline {
  color: #0A192F;
  text-decoration: underline;
  font-weight: bold;
}

.page-games-lottery-games__link-inline:hover {
  color: #FFD700;
}

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

.page-games-lottery-games__center-text {
  text-align: center;
  margin-top: 40px;
}

.page-games-lottery-games__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-games-lottery-games__app-text {
  flex: 1;
  min-width: 300px;
}

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

.page-games-lottery-games__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

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

.page-games-lottery-games__faq-question {
  font-size: 1.3em;
  color: #0A192F;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-games-lottery-games__faq-answer {
  color: #555555;
}

.page-games-lottery-games__final-cta-section {
  background-color: #0A192F;
  color: #FFFFFF;
  padding: 100px 0;
}

.page-games-lottery-games__final-cta-section .page-games-lottery-games__section-title {
  color: #FFFFFF;
}

.page-games-lottery-games__final-cta-section .page-games-lottery-games__section-intro {
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-games-lottery-games .highlight {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-games-lottery-games__hero-title {
    font-size: 2.8em;
  }
  .page-games-lottery-games__section-title {
    font-size: 2em;
  }
  .page-games-lottery-games__grid--2-col {
    grid-template-columns: 1fr;
  }
  .page-games-lottery-games__app-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .page-games-lottery-games__app-text, .page-games-lottery-games__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-games-lottery-games__list {
    text-align: center;
    margin: 20px auto 20px auto;
  }
  .page-games-lottery-games__step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-games-lottery-games__hero-title {
    font-size: 2.2em;
  }
  .page-games-lottery-games__hero-description {
    font-size: 1.1em;
  }
  .page-games-lottery-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-lottery-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-games-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-games-lottery-games__section-intro {
    font-size: 1em;
  }
  .page-games-lottery-games__grid {
    grid-template-columns: 1fr;
  }
  .page-games-lottery-games__step-title {
    font-size: 1.4em;
  }
  .page-games-lottery-games__faq-question {
    font-size: 1.1em;
  }
}