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

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

.page-lottery-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2342 0%, #1A3E6C 100%); /* Dark blue gradient */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-lottery-games__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-lottery-games__subtitle {
  font-size: 1.5em;
  color: #B0B0B0; /* Slightly lighter grey for subtitle */
  margin-bottom: 40px;
}

.page-lottery-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #0A2342; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-lottery-games__cta-button:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-lottery-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.page-lottery-games__hero-image {
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

.page-lottery-games__introduction,
.page-lottery-games__game-types,
.page-lottery-games__how-to-play,
.page-lottery-games__tips-tricks,
.page-lottery-games__promotions,
.page-lottery-games__download-app,
.page-lottery-games__final-cta {
  padding: 60px 0;
  text-align: center;
}

.page-lottery-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-lottery-games__text-content {
  font-size: 1.1em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-lottery-games__feature-item {
  background-color: #1A3E6C; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px 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;
}

.page-lottery-games__feature-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-games__feature-item p {
  font-size: 1em;
  color: #B0B0B0;
}

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

.page-lottery-games__type-card {
  background-color: #1A3E6C;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-lottery-games__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-lottery-games__type-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-lottery-games__type-card p {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 20px 20px;
}

.page-lottery-games__secondary-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-lottery-games__secondary-cta-button:hover {
  background-color: #E0B500;
}

.page-lottery-games__how-to-play {
  background-color: #0A2342;
  padding: 80px 0;
}

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

.page-lottery-games__steps-list li {
  background-color: #1A3E6C;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  counter-increment: step-counter;
}

.page-lottery-games__steps-list li::before {
  content: "0" counter(step-counter);
  position: absolute;
  top: -20px;
  left: 20px;
  background-color: #FFD700;
  color: #0A2342;
  font-size: 2.5em;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 10px;
  z-index: 1;
}

.page-lottery-games__steps-list li h4 {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-lottery-games__steps-list li p {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-lottery-games__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2342;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-lottery-games__step-button:hover {
  background-color: #E0B500;
}

.page-lottery-games__tips-tricks {
  background-color: #112F53; /* Slightly lighter dark blue */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-lottery-games__tips-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.page-lottery-games__tips-list li {
  background-color: #0A2342;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-lottery-games__tips-list li h4 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-games__tips-list li p {
  font-size: 1em;
  color: #B0B0B0;
}

.page-lottery-games__image-right {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
  z-index: 0;
}

.page-lottery-games__strategy-image {
  max-width: 500px;
  height: auto;
}

.page-lottery-games__promotions {
  background-color: #0A2342;
  padding: 80px 0;
}

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

.page-lottery-games__promo-list li {
  background-color: #1A3E6C;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

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

.page-lottery-games__promo-list li h4 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-games__promo-list li p {
  font-size: 1em;
  color: #B0B0B0;
}

.page-lottery-games__center-cta {
  margin-top: 50px;
}

.page-lottery-games__download-app {
  background-color: #112F53;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-lottery-games__app-download-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-lottery-games__app-button {
  display: flex;
  align-items: center;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-lottery-games__app-button:hover {
  background-color: #E0B500;
  transform: translateY(-3px);
}

.page-lottery-games__app-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(29%) saturate(2283%) hue-rotate(180deg) brightness(94%) contrast(99%); /* Adjust icon color to dark blue */
}

.page-lottery-games__app-image-wrapper {
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.page-lottery-games__app-mockup {
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-lottery-games__final-cta {
  background-color: #0A2342;
  padding: 80px 0;
}

.page-lottery-games__final-cta .page-lottery-games__cta-button {
  margin-top: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-lottery-games__main-title {
    font-size: 3em;
  }
  .page-lottery-games__section-title {
    font-size: 2.2em;
  }
  .page-lottery-games__hero-image-wrapper {
    display: none;
  }
  .page-lottery-games__image-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-lottery-games__hero-section {
    padding: 60px 20px;
  }
  .page-lottery-games__main-title {
    font-size: 2.5em;
  }
  .page-lottery-games__subtitle {
    font-size: 1.2em;
  }
  .page-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games__text-content {
    font-size: 1em;
  }
  .page-lottery-games__features-grid,
  .page-lottery-games__type-card-grid,
  .page-lottery-games__steps-list,
  .page-lottery-games__promo-list {
    grid-template-columns: 1fr;
  }
  .page-lottery-games__app-download-options {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-lottery-games__main-title {
    font-size: 2em;
  }
  .page-lottery-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-games__section-title {
    font-size: 1.6em;
  }
  .page-lottery-games__steps-list li::before {
    font-size: 2em;
    top: -15px;
    left: 15px;
  }
  .page-lottery-games__app-button {
    width: 80%;
    justify-content: center;
  }
}