.page-x-s {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-x-s__section {
  padding: 60px 0;
}

.page-x-s__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-x-s__section-title {
  font-size: 2.5em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-x-s__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-x-s__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;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-x-s__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
}

.page-x-s__btn--primary:hover {
  background-color: #e6c200;
}

.page-x-s__btn--secondary {
  background-color: #0A246A;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-x-s__btn--secondary:hover {
  background-color: #1a3c80;
  color: #FFD700;
}

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

/* Hero Section */
.page-x-s__hero {
  background: linear-gradient(135deg, #0A246A 0%, #1a3c80 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-x-s__hero-actions .page-x-s__btn {
  margin: 0 10px;
}

/* Why Choose Section */
.page-x-s__why-choose {
  background-color: #fff;
}

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

.page-x-s__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-x-s__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-x-s__feature-title {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-x-s__feature-item p {
  color: #666;
}

/* Game Types Section */
.page-x-s__game-types {
  background-color: #f9f9f9;
}

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

.page-x-s__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-x-s__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-x-s__game-title {
  font-size: 1.6em;
  color: #0A246A;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-x-s__game-card p {
  color: #666;
  padding: 0 15px 20px;
  min-height: 90px;
}

.page-x-s__game-card .page-x-s__btn {
  margin-bottom: 20px;
}

/* How To Play Section */
.page-x-s__how-to-play {
  background-color: #fff;
}

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

.page-x-s__step-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fefefe;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-x-s__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A246A;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-x-s__step-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-x-s__step-item p {
  color: #666;
}

.page-x-s__step-item a {
  color: #0A246A;
  font-weight: bold;
  text-decoration: none;
}

.page-x-s__step-item a:hover {
  text-decoration: underline;
}

.page-x-s__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Promotions Section */
.page-x-s__promotions {
  background-color: #f9f9f9;
}

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

.page-x-s__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-x-s__promo-title {
  font-size: 1.6em;
  color: #0A246A;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-x-s__promo-card p {
  color: #666;
  padding: 0 15px 20px;
  min-height: 80px;
}

.page-x-s__promo-card .page-x-s__btn {
  margin-bottom: 20px;
}

/* FAQ Section */
.page-x-s__faq {
  background-color: #fff;
}

.page-x-s__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-x-s__accordion-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-x-s__accordion-header {
  background-color: #0A246A;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-x-s__accordion-header:hover {
  background-color: #1a3c80;
}

.page-x-s__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-x-s__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-x-s__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-x-s__accordion-content p {
  padding: 15px 0;
  color: #555;
}

.page-x-s__accordion-content a {
  color: #0A246A;
  font-weight: bold;
  text-decoration: none;
}

.page-x-s__accordion-content a:hover {
  text-decoration: underline;
}

/* Contact CTA Section */
.page-x-s__contact-cta {
  background: linear-gradient(135deg, #0A246A 0%, #1a3c80 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-x-s__contact-cta .page-x-s__section-title {
  color: #FFD700;
}

.page-x-s__contact-cta .page-x-s__section-intro {
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-x-s__hero-title {
    font-size: 2.5em;
  }

  .page-x-s__hero-description {
    font-size: 1em;
  }

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

  .page-x-s__features-grid,
  .page-x-s__game-cards,
  .page-x-s__steps-list,
  .page-x-s__promo-cards {
    grid-template-columns: 1fr;
  }

  .page-x-s__hero-actions .page-x-s__btn {
    display: block;
    margin: 15px auto;
    max-width: 250px;
  }
}

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

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

  .page-x-s__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}