.page-lottery-official {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-lottery-official__hero-section {
  background: linear-gradient(135deg, #0A2342, #1a4a82);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-lottery-official__hero-section .page-lottery-official__container {
  position: relative;
  z-index: 1;
}

.page-lottery-official__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-lottery-official__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-lottery-official__hero-actions .page-lottery-official__btn {
  margin: 0 10px;
}

.page-lottery-official__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.page-lottery-official__btn--primary {
  background-color: #E0B400;
  color: #0A2342;
  border: 2px solid #E0B400;
}

.page-lottery-official__btn--primary:hover {
  background-color: #c79f00;
  color: #0A2342;
}

.page-lottery-official__btn--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-lottery-official__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
}

.page-lottery-official__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-lottery-official__btn--lg {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-lottery-official__section {
  padding: 80px 0;
}

.page-lottery-official__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-lottery-official__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 20px;
}

.page-lottery-official__section-intro {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

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

.page-lottery-official__lottery-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-official__lottery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-lottery-official__card-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-lottery-official__card-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
}

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

.page-lottery-official__feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-lottery-official__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-lottery-official__feature-title {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-lottery-official__feature-description {
  color: #666;
}

.page-lottery-official__how-to-play .page-lottery-official__section-intro {
  margin-bottom: 40px;
}

.page-lottery-official__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.page-lottery-official__steps-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-lottery-official__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #E0B400;
  color: #0A2342;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-lottery-official__steps-list li p {
  margin-top: 0;
  color: #555;
}

.page-lottery-official__steps-list li p a {
  color: #0A2342;
  font-weight: bold;
  text-decoration: none;
}

.page-lottery-official__steps-list li p a:hover {
  text-decoration: underline;
  color: #E0B400;
}

.page-lottery-official__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-lottery-official__promotions {
  background-color: #0A2342;
  color: #e0e0e0;
}

.page-lottery-official__promotions .page-lottery-official__section-title {
  color: #E0B400;
}

.page-lottery-official__promotions .page-lottery-official__section-intro {
  color: #ccc;
}

.page-lottery-official__promotion-card {
  display: flex;
  align-items: center;
  background-color: #1a3c61;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-lottery-official__promotion-card:last-child {
  margin-bottom: 0;
}

.page-lottery-official__promotion-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-lottery-official__promotion-content {
  padding: 25px 30px;
}

.page-lottery-official__promotion-title {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-lottery-official__promotion-description {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-lottery-official__promotions .page-lottery-official__btn--small {
  background-color: #E0B400;
  color: #0A2342;
  border: none;
}

.page-lottery-official__promotions .page-lottery-official__btn--small:hover {
  background-color: #c79f00;
}

.page-lottery-official__section-outro {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #ccc;
}

.page-lottery-official__section-outro a {
  color: #E0B400;
  font-weight: bold;
  text-decoration: none;
}

.page-lottery-official__section-outro a:hover {
  text-decoration: underline;
}

.page-lottery-official__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
}

.page-lottery-official__app-text {
  flex: 1;
}

.page-lottery-official__app-text .page-lottery-official__section-title {
  text-align: left;
  font-size: 2.2em;
}

.page-lottery-official__app-text .page-lottery-official__section-intro {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
}

.page-lottery-official__app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-lottery-official__app-features li {
  font-size: 1.1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #444;
}

.page-lottery-official__app-features li::before {
  content: '✓';
  color: #E0B400;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-lottery-official__app-image {
  flex: 1;
  text-align: center;
}

.page-lottery-official__app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-lottery-official__faq-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-lottery-official__faq-question {
  font-size: 1.4em;
  color: #0A2342;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-lottery-official__faq-answer {
  color: #555;
  margin-bottom: 0;
}

.page-lottery-official__responsible-gaming {
  background-color: #0A2342;
  color: #e0e0e0;
  text-align: center;
}

.page-lottery-official__responsible-gaming .page-lottery-official__section-title {
  color: #E0B400;
}

.page-lottery-official__responsible-gaming .page-lottery-official__section-intro {
  color: #ccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-official__responsible-gaming p {
  color: #ccc;
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.05em;
}

.page-lottery-official__final-cta {
  text-align: center;
  padding: 100px 0;
  background: #f8f8f8;
}

.page-lottery-official__final-cta .page-lottery-official__section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
}

.page-lottery-official__final-cta .page-lottery-official__section-intro {
  margin-bottom: 50px;
}

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

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

  .page-lottery-official__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-lottery-official__app-text .page-lottery-official__section-title,
  .page-lottery-official__app-text .page-lottery-official__section-intro {
    text-align: center;
  }

  .page-lottery-official__app-image {
    order: -1;
    margin-bottom: 40px;
  }

  .page-lottery-official__promotion-card {
    flex-direction: column;
    text-align: center;
  }

  .page-lottery-official__promotion-image {
    width: 100%;
    height: 200px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }
}

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

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

  .page-lottery-official__hero-description {
    font-size: 1.1em;
  }

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

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

  .page-lottery-official__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-lottery-official__steps-list li {
    padding-left: 60px;
  }

  .page-lottery-official__steps-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

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

  .page-lottery-official__final-cta .page-lottery-official__section-title {
    font-size: 2em;
  }

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

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

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

  .page-lottery-official__hero-actions .page-lottery-official__btn {
    display: block;
    margin: 15px auto;
  }

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

  .page-lottery-official__lottery-card,
  .page-lottery-official__feature-item,
  .page-lottery-official__faq-item {
    padding: 20px;
  }

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

  .page-lottery-official__app-text .page-lottery-official__section-title {
    font-size: 1.8em;
  }
}