.page-game-types-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Text color for dark background */
  background-color: #000000; /* Main background color */
  line-height: 1.6;
}

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

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

.page-game-types-lottery-games__section:nth-of-type(even) {
  background-color: #1a1a1a;
}

.page-game-types-lottery-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-game-types-lottery-games__section-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-lottery-games__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-types-lottery-games__link:hover {
  text-decoration: underline;
  color: #e6c200;
}

/* Hero Section */
.page-game-types-lottery-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.page-game-types-lottery-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-game-types-lottery-games__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-types-lottery-games__description {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-game-types-lottery-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  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-game-types-lottery-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-types-lottery-games__cta-button--secondary {
  background-color: #333333;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-types-lottery-games__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-game-types-lottery-games__hero-image-wrapper {
  margin-top: 40px;
  max-width: 80%;
}

.page-game-types-lottery-games__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Game Types Section */
.page-game-types-lottery-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-types-lottery-games__game-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

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

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

.page-game-types-lottery-games__game-card-text {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-game-types-lottery-games__cta-link {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-game-types-lottery-games__cta-link:hover {
  background-color: #e6c200;
}

/* Why Choose Section */
.page-game-types-lottery-games__why-choose {
  background-color: #000000;
}

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

.page-game-types-lottery-games__feature-list li {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-lottery-games__feature-list li .icon-check {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  display: inline-block;
  width: 25px; /* Ensure icon has fixed width */
  text-align: center;
}

/* Guide Section */
.page-game-types-lottery-games__guide-steps {
  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: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

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

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

.page-game-types-lottery-games__step-text {
  color: #cccccc;
  font-size: 0.95em;
}

/* Tips & Strategies Section */
.page-game-types-lottery-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-game-types-lottery-games__tips-list li {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

/* Promotions Section */
.page-game-types-lottery-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-types-lottery-games__promo-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-game-types-lottery-games__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-game-types-lottery-games__promo-text {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 20px;
}

/* Final CTA Section */
.page-game-types-lottery-games__final-cta {
  background: linear-gradient(90deg, #000000, #333333);
  padding: 80px 0;
}

.page-game-types-lottery-games__final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-game-types-lottery-games__cta-button--primary {
  background-color: #FFD700;
  color: #000000;
  font-size: 1.4em;
  padding: 18px 35px;
}

.page-game-types-lottery-games__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types-lottery-games__hero-section {
    padding: 80px 20px;
  }
  .page-game-types-lottery-games__main-title {
    font-size: 2.8em;
  }
  .page-game-types-lottery-games__description {
    font-size: 1.1em;
  }
  .page-game-types-lottery-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-types-lottery-games__hero-section {
    flex-direction: column;
    text-align: center;
  }
  .page-game-types-lottery-games__hero-image-wrapper {
    max-width: 100%;
  }
  .page-game-types-lottery-games__main-title {
    font-size: 2.2em;
  }
  .page-game-types-lottery-games__description {
    font-size: 1em;
  }
  .page-game-types-lottery-games__game-grid,
  .page-game-types-lottery-games__guide-steps,
  .page-game-types-lottery-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-lottery-games__feature-list,
  .page-game-types-lottery-games__tips-list {
    margin-left: 0;
    margin-right: 0;
  }
  .page-game-types-lottery-games__feature-list li,
  .page-game-types-lottery-games__tips-list li {
    padding: 15px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-game-types-lottery-games__hero-section {
    padding: 60px 15px;
  }
  .page-game-types-lottery-games__main-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery-games__description {
    font-size: 0.9em;
  }
  .page-game-types-lottery-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types-lottery-games__section-title {
    font-size: 1.8em;
  }
  .page-game-types-lottery-games__section-description {
    font-size: 0.9em;
  }
  .page-game-types-lottery-games__game-card-title,
  .page-game-types-lottery-games__promo-title {
    font-size: 1.5em;
  }
  .page-game-types-lottery-games__step-title {
    font-size: 1.3em;
  }
}