.page-lottery {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

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

.page-lottery__hero-section {
  background: linear-gradient(135deg, #1A202C, #FFD700);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-lottery__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-lottery__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-lottery__button {
  display: inline-block;
  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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-lottery__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-lottery__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-lottery__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-lottery__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-lottery__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-lottery__introduction-section,
.page-lottery__game-types-section,
.page-lottery__advantages-section,
.page-lottery__how-to-play-section,
.page-lottery__tips-section,
.page-lottery__promotions-section,
.page-lottery__faq-section,
.page-lottery__final-cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-lottery__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-lottery__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-lottery__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
}

.page-lottery__card-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-lottery__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-lottery__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-lottery__advantage-list,
.page-lottery__tips-list,
.page-lottery__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-lottery__list-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.page-lottery__list-item:hover {
  transform: translateY(-5px);
}

.page-lottery__list-title {
  font-size: 1.4em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-lottery__list-description {
  font-size: 1em;
  color: #666666;
}

.page-lottery__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-lottery__step-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 25px 25px 25px 60px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.page-lottery__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #1A202C;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-lottery__step-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-lottery__step-description {
  font-size: 1em;
  color: #555555;
}

.page-lottery__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-lottery__step-description a:hover {
  text-decoration: underline;
}

.page-lottery__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-lottery__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

.page-lottery__faq-question {
  font-size: 1.3em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-lottery__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-lottery__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-lottery__faq-answer a:hover {
  text-decoration: underline;
}

.page-lottery__image {
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: auto;
}

.page-lottery__image--full-width {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.page-lottery__image--large {
  width: 90%;
  height: 500px;
  object-fit: cover;
}

.page-lottery__image--medium {
  width: 80%;
  height: 450px;
  object-fit: cover;
}

.page-lottery__final-cta-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-lottery__final-cta-section .page-lottery__section-title {
  color: #FFD700;
}

.page-lottery__final-cta-section .page-lottery__text-content {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-lottery__final-cta-section .page-lottery__text-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-lottery__final-cta-section .page-lottery__text-content a:hover {
  text-decoration: underline;
}

.page-lottery__final-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-lottery__hero-title {
    font-size: 2.8em;
  }

  .page-lottery__hero-subtitle {
    font-size: 1.3em;
  }

  .page-lottery__section-title {
    font-size: 2em;
  }

  .page-lottery__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-lottery__advantage-list,
  .page-lottery__tips-list,
  .page-lottery__promo-list {
    grid-template-columns: 1fr;
  }

  .page-lottery__image--large {
    height: 400px;
  }

  .page-lottery__image--medium {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .page-lottery__hero-section {
    padding: 80px 0;
  }

  .page-lottery__hero-title {
    font-size: 2.2em;
  }

  .page-lottery__hero-subtitle {
    font-size: 1.1em;
  }

  .page-lottery__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-lottery__section-title {
    font-size: 1.8em;
  }

  .page-lottery__text-content {
    font-size: 1em;
  }

  .page-lottery__image--full-width {
    height: 300px;
  }

  .page-lottery__image--large {
    height: 300px;
  }

  .page-lottery__image--medium {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .page-lottery__hero-section {
    padding: 60px 0;
  }

  .page-lottery__hero-title {
    font-size: 1.8em;
  }

  .page-lottery__hero-subtitle {
    font-size: 0.9em;
  }

  .page-lottery__button {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-lottery__section-title {
    font-size: 1.5em;
  }

  .page-lottery__game-card {
    padding-bottom: 15px;
  }

  .page-lottery__card-image {
    height: 180px;
  }

  .page-lottery__card-title {
    font-size: 1.4em;
  }

  .page-lottery__list-item,
  .page-lottery__faq-item {
    padding: 20px;
  }

  .page-lottery__list-title,
  .page-lottery__faq-question {
    font-size: 1.2em;
  }

  .page-lottery__step-item {
    padding: 20px 20px 20px 50px;
  }

  .page-lottery__step-item::before {
    left: 15px;
    top: 20px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }

  .page-lottery__step-title {
    font-size: 1.3em;
  }

  .page-lottery__image--full-width,
  .page-lottery__image--large,
  .page-lottery__image--medium {
    height: 250px;
  }

  .page-lottery__final-buttons {
    flex-direction: column;
    gap: 15px;
  }
}