/* style/game-reviews-lottery-games.css */
.page-game-reviews-lottery-games {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light grey for text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-game-reviews-lottery-games__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #303742 50%, #FFD700 100%); /* Gradient background with brand colors */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-game-reviews-lottery-games__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-lottery-games__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e5dfd3;
}

.page-game-reviews-lottery-games__hero-description a,
.page-game-reviews-lottery-games__paragraph a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-reviews-lottery-games__hero-description a:hover,
.page-game-reviews-lottery-games__paragraph a:hover {
  text-decoration: underline;
}

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

.page-game-reviews-lottery-games__cta-button:hover {
  background-color: #e5c300; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-reviews-lottery-games__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-reviews-lottery-games__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-game-reviews-lottery-games__content-section {
  padding: 60px 0;
  background-color: #1A202C;
  color: #e5dfd3;
}

.page-game-reviews-lottery-games__bg-dark {
  background-color: #2a313d;
}

.page-game-reviews-lottery-games__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-reviews-lottery-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
}

.page-game-reviews-lottery-games__features-grid,
.page-game-reviews-lottery-games__lottery-types,
.page-game-reviews-lottery-games__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-game-reviews-lottery-games__feature-item,
.page-game-reviews-lottery-games__lottery-card,
.page-game-reviews-lottery-games__promotion-card {
  background-color: #2a313d;
  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-game-reviews-lottery-games__feature-item:hover,
.page-game-reviews-lottery-games__lottery-card:hover,
.page-game-reviews-lottery-games__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-lottery-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

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

.page-game-reviews-lottery-games__lottery-card .page-game-reviews-lottery-games__card-image,
.page-game-reviews-lottery-games__promotion-card .page-game-reviews-lottery-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-reviews-lottery-games__lottery-card ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-game-reviews-lottery-games__lottery-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.page-game-reviews-lottery-games__lottery-card ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-game-reviews-lottery-games__steps-list {
  list-style-type: none;
  padding: 0;
}

.page-game-reviews-lottery-games__steps-list li {
  background-color: #2a313d;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
  text-align: left;
}

.page-game-reviews-lottery-games__steps-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-game-reviews-lottery-games__steps-list li:nth-child(1)::before { content: '1'; }
.page-game-reviews-lottery-games__steps-list li:nth-child(2)::before { content: '2'; }
.page-game-reviews-lottery-games__steps-list li:nth-child(3)::before { content: '3'; }

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

.page-game-reviews-lottery-games__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-lottery-games__tips-list {
  list-style-type: none;
  padding: 0;
}

.page-game-reviews-lottery-games__tips-list li {
  background-color: #2a313d;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-game-reviews-lottery-games__tip-title {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-game-reviews-lottery-games__final-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #1A202C, #FFD700);
  color: #FFFFFF;
}

.page-game-reviews-lottery-games__final-cta .page-game-reviews-lottery-games__section-title {
  color: #1A202C;
}

.page-game-reviews-lottery-games__final-cta .page-game-reviews-lottery-games__section-title::after {
  background-color: #1A202C;
}

.page-game-reviews-lottery-games__final-cta .page-game-reviews-lottery-games__paragraph {
  color: #1A202C;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-lottery-games__final-cta .page-game-reviews-lottery-games__paragraph a {
  color: #1A202C;
  text-decoration: underline;
}

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

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

  .page-game-reviews-lottery-games__hero-section,
  .page-game-reviews-lottery-games__content-section,
  .page-game-reviews-lottery-games__final-cta {
    padding: 50px 0;
  }

  .page-game-reviews-lottery-games__features-grid,
  .page-game-reviews-lottery-games__lottery-types,
  .page-game-reviews-lottery-games__promotion-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-lottery-games__steps-list li {
    padding-left: 20px;
    padding-top: 60px;
  }

  .page-game-reviews-lottery-games__steps-list li::before {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

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

  .page-game-reviews-lottery-games__hero-description {
    font-size: 1em;
  }

  .page-game-reviews-lottery-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}