.page-x-s {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF;
  background-color: #000080; /* Deep blue background */
  line-height: 1.6;
}

.page-x-s .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-x-s .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-x-s .hero-section {
  background: linear-gradient(135deg, #000080 0%, #00004d 50%, #FFD700 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-x-s .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:lottery,numbers,abstract,gold_blue]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-x-s .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-x-s .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.page-x-s .hero-actions .btn {
  margin: 0 10px;
  font-size: 1.1em;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-x-s .btn-primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-x-s .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-x-s .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-x-s .btn-secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-x-s .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-x-s .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-x-s .section-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 60px;
}

.page-x-s .section-intro, .page-x-s .section-types, .page-x-s .section-guide, .page-x-s .section-strategies, .page-x-s .section-promotions, .page-x-s .section-benefits, .page-x-s .section-faq, .page-x-s .section-cta-final {
  padding: 80px 0;
}

.page-x-s .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-x-s .content-wrapper .text-content {
  flex: 1;
}

.page-x-s .content-wrapper .image-content {
  flex: 1;
  text-align: center;
}

.page-x-s .feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-x-s .section-intro .content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-x-s p {
  margin-bottom: 1em;
  color: #E0E0E0;
}

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

.page-x-s .type-card {
  background-color: #00004d; /* Darker blue */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s .type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

.page-x-s .card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-x-s .card-description {
  color: #CCCCCC;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-x-s .btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  background-color: #FFD700;
  color: #000080;
  text-decoration: none;
  border: none;
  transition: background-color 0.3s ease;
}

.page-x-s .btn-small:hover {
  background-color: #e6c200;
}

.page-x-s .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-x-s .step-item {
  background-color: #00004d;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.page-x-s .step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: -60px auto 20px;
  border: 4px solid #000080;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-x-s .step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-x-s .step-description {
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-x-s .step-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-x-s .step-description a:hover {
  color: #e6c200;
}

.page-x-s .btn-step {
  background-color: #FFD700;
  color: #000080;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-x-s .btn-step:hover {
  background-color: #e6c200;
}

.page-x-s .guide-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-x-s .strategy-item {
  background-color: #00004d;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s .strategy-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-x-s .strategy-description {
  color: #CCCCCC;
}

.page-x-s .strategy-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 60px auto 0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-x-s .promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-x-s .promo-card {
  background-color: #00004d;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-x-s .promo-card:hover {
  transform: translateY(-8px);
}

.page-x-s .promo-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-x-s .promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-x-s .promo-description {
  color: #CCCCCC;
  margin-bottom: 25px;
}

.page-x-s .btn-promo {
  background-color: #FFD700;
  color: #000080;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-x-s .btn-promo:hover {
  background-color: #e6c200;
}

.page-x-s .promo-cta {
  text-align: center;
  background-color: #00004d;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-x-s .promo-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-x-s .btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

.page-x-s .benefit-item {
  background-color: #00004d;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-x-s .benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-x-s .benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-x-s .benefit-description {
  color: #CCCCCC;
}

.page-x-s .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-x-s .faq-item {
  background-color: #00004d;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s .faq-question {
  font-size: 1.4em;
  color: #FFD700;
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
}

.page-x-s .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-x-s .faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-x-s .faq-answer {
  color: #CCCCCC;
  font-size: 1.1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-x-s .faq-answer.active {
  display: block;
}

.page-x-s .faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-x-s .faq-answer a:hover {
  color: #e6c200;
}

.page-x-s .section-cta-final {
  text-align: center;
  background-color: #00004d;
  padding: 80px 0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 60px;
}

.page-x-s .section-cta-final .section-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-x-s .hero-title {
    font-size: 2.8em;
  }
  .page-x-s .hero-description {
    font-size: 1.1em;
  }
  .page-x-s .section-title {
    font-size: 2em;
  }
  .page-x-s .content-wrapper {
    flex-direction: column;
  }
  .page-x-s .guide-image, .page-x-s .strategy-image {
    max-width: 100%;
  }
  .page-x-s .types-grid, .page-x-s .guide-steps, .page-x-s .strategy-grid, .page-x-s .promo-cards, .page-x-s .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-x-s .hero-title {
    font-size: 2.2em;
  }
  .page-x-s .hero-description {
    font-size: 1em;
  }
  .page-x-s .hero-actions .btn {
    font-size: 1em;
    padding: 12px 25px;
    margin: 5px 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-x-s .section-title {
    font-size: 1.8em;
  }
  .page-x-s .section-subtitle {
    font-size: 1em;
  }
  .page-x-s .type-card, .page-x-s .step-item, .page-x-s .strategy-item, .page-x-s .promo-card, .page-x-s .benefit-item, .page-x-s .faq-item {
    padding: 20px;
  }
  .page-x-s .card-title, .page-x-s .step-title, .page-x-s .promo-title, .page-x-s .benefit-title {
    font-size: 1.4em;
  }
  .page-x-s .faq-question {
    font-size: 1.2em;
  }
  .page-x-s .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-x-s .hero-title {
    font-size: 1.8em;
  }
  .page-x-s .hero-description {
    font-size: 0.9em;
  }
  .page-x-s .section-title {
    font-size: 1.5em;
  }
  .page-x-s .section-subtitle {
    font-size: 0.9em;
  }
  .page-x-s .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin: -50px auto 15px;
  }
}