.page-games-lottery-results {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #121212; /* Slightly lighter dark background for contrast */
  line-height: 1.6;
}

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

.page-games-lottery-results__container--center {
  text-align: center;
}

.page-games-lottery-results__hero {
  background: linear-gradient(135deg, #1A202C 0%, #303640 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-games-lottery-results__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-lottery-results__section {
  padding: 60px 0;
  background-color: #1A202C; /* Primary dark background */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-games-lottery-results__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-games-lottery-results__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
}

.page-games-lottery-results__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C;
  border: none;
}

.page-games-lottery-results__btn--primary:hover {
  background-color: #E0B000;
  transform: translateY(-2px);
}

.page-games-lottery-results__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-games-lottery-results__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-games-lottery-results__btn--lg {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

.page-games-lottery-results__feature-item {
  background-color: #2A2F3B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-lottery-results__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-games-lottery-results__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-games-lottery-results__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-games-lottery-results__feature-description {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-games-lottery-results__cta-text {
  text-align: center;
  font-size: 1.2em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-games-lottery-results__lottery-card {
  background-color: #2A2F3B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-results__lottery-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-games-lottery-results__lottery-card p {
  color: #B0B0B0;
  margin-bottom: 15px;
}

.page-games-lottery-results__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-games-lottery-results__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #C0C0C0;
}

.page-games-lottery-results__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-games-lottery-results__lottery-image, 
.page-games-lottery-results__guide-image, 
.page-games-lottery-results__history-image, 
.page-games-lottery-results__security-image, 
.page-games-lottery-results__promo-image, 
.page-games-lottery-results__support-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-games-lottery-results__steps {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-games-lottery-results__steps li {
  background-color: #2A2F3B;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-games-lottery-results__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #FFD700;
  color: #1A202C;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.page-games-lottery-results__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-games-lottery-results__steps li p {
  color: #C0C0C0;
  margin-top: 0;
}

.page-games-lottery-results__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-games-lottery-results__link:hover {
  text-decoration: underline;
}

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

  .page-games-lottery-results__hero-subtitle {
    font-size: 1em;
  }

  .page-games-lottery-results__section-title {
    font-size: 2em;
  }

  .page-games-lottery-results__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-games-lottery-results__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-games-lottery-results__features, .page-games-lottery-results__lottery-grid {
    grid-template-columns: 1fr;
  }

  .page-games-lottery-results__steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-games-lottery-results__steps li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-games-lottery-results__step-title {
    font-size: 1.4em;
  }
}

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

  .page-games-lottery-results__section-title {
    font-size: 1.8em;
  }

  .page-games-lottery-results__btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-games-lottery-results__btn--secondary {
    margin-top: 0;
  }

  .page-games-lottery-results__hero {
    padding: 60px 0;
  }

  .page-games-lottery-results__section {
    padding: 40px 0;
  }
}