.page-game-reviews-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1D38; /* Darker background for sections */
}

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

.page-game-reviews-lottery__hero {
  background: linear-gradient(135deg, #1A2B5B 0%, #0F1D38 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-lottery__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-game-reviews-lottery__button {
  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-game-reviews-lottery__button--primary {
  background-color: #FFD700;
  color: #1A2B5B;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-lottery__button--primary:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-lottery__button--secondary {
  background-color: #1A2B5B;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-reviews-lottery__button--secondary:hover {
  background-color: #0F1D38;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-lottery__button--text {
  background: none;
  border: none;
  color: #FFD700;
  padding: 5px 0;
  font-size: 1em;
  text-decoration: underline;
  margin-top: 10px;
}

.page-game-reviews-lottery__button--text:hover {
  color: #E5C100;
}

.page-game-reviews-lottery__section {
  padding: 80px 0;
  background-color: #0F1D38;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-reviews-lottery__section:last-of-type {
  border-bottom: none;
}

.page-game-reviews-lottery__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-lottery__section-description {
  font-size: 1.2em;
  color: #C0C0C0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-game-reviews-lottery__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-game-reviews-lottery__content-grid--reversed {
  flex-direction: row-reverse;
}

.page-game-reviews-lottery__text-content {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-game-reviews-lottery__text-content p {
  margin-bottom: 20px;
}

.page-game-reviews-lottery__text-content strong {
  color: #FFD700;
}

.page-game-reviews-lottery__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-game-reviews-lottery__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

.page-game-reviews-lottery__image:hover {
  transform: scale(1.02);
}

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

.page-game-reviews-lottery__card {
  background-color: #1A2B5B;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-reviews-lottery__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-game-reviews-lottery__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-reviews-lottery__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-reviews-lottery__card-text {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.7;
}

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

.page-game-reviews-lottery__step {
  background-color: #1A2B5B;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.page-game-reviews-lottery__step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2.5em;
  font-weight: bold;
  color: rgba(255, 215, 0, 0.3);
  opacity: 0.7;
  z-index: 0;
}

.page-game-reviews-lottery__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-game-reviews-lottery__step p {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.page-game-reviews-lottery__feature-item {
  background-color: #1A2B5B;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-reviews-lottery__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.page-game-reviews-lottery__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-reviews-lottery__feature-item p {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.7;
}

.page-game-reviews-lottery__cta-banner {
  background: linear-gradient(90deg, #1A2B5B, #0F1D38);
  padding: 60px 0;
  text-align: center;
}

.page-game-reviews-lottery__cta-content {
  max-width: 900px;
}

.page-game-reviews-lottery__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-reviews-lottery__cta-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-game-reviews-lottery__cta-buttons .page-game-reviews-lottery__button {
  margin: 0 15px;
}

@media (max-width: 992px) {
  .page-game-reviews-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-lottery__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 2.2em;
  }
  .page-game-reviews-lottery__content-grid {
    flex-direction: column;
  }
  .page-game-reviews-lottery__content-grid--reversed {
    flex-direction: column-reverse;
  }
  .page-game-reviews-lottery__cta-title {
    font-size: 2em;
  }
  .page-game-reviews-lottery__cta-description {
    font-size: 1.1em;
  }
  .page-game-reviews-lottery__cta-buttons .page-game-reviews-lottery__button {
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-lottery__hero {
    padding: 80px 0;
  }
  .page-game-reviews-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-lottery__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-lottery__section {
    padding: 60px 0;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery__section-description {
    font-size: 1em;
  }
  .page-game-reviews-lottery__grid, .page-game-reviews-lottery__steps-grid, .page-game-reviews-lottery__features-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews-lottery__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-lottery__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-reviews-lottery__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-lottery__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-reviews-lottery__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-lottery__card, .page-game-reviews-lottery__step, .page-game-reviews-lottery__feature-item {
    padding: 20px;
  }
  .page-game-reviews-lottery__card-title, .page-game-reviews-lottery__step-title, .page-game-reviews-lottery__feature-title {
    font-size: 1.4em;
  }
  .page-game-reviews-lottery__cta-title {
    font-size: 1.6em;
  }
  .page-game-reviews-lottery__cta-description {
    font-size: 0.9em;
  }
}