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

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

.page-x-s__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-x-s__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:xoso,abstract,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-x-s__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Accent color for main title */
  position: relative;
  z-index: 2;
}

.page-x-s__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-x-s__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.page-x-s__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-x-s__btn--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-x-s__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-x-s__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-x-s__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
}

.page-x-s__btn--action {
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 20px;
  font-size: 1em;
}

.page-x-s__btn--action:hover {
  background-color: #004080;
  color: #FFCC00;
}

.page-x-s__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 25px;
  background-color: #003366;
  color: #FFCC00;
}

.page-x-s__btn--small:hover {
  background-color: #004080;
  color: #FFCC00;
}

.page-x-s__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 60px;
}

.page-x-s__btn--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-x-s__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

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

.page-x-s__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-x-s__introduction p,
.page-x-s__how-to-play p,
.page-x-s__tips p,
.page-x-s__responsible-gaming p,
.page-x-s__faq p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-x-s__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-x-s__list li {
  background-color: #e6f2ff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #003366;
  border-radius: 4px;
  font-size: 1.05em;
  color: #222;
}

.page-x-s__list li strong {
  color: #003366;
}

.page-x-s__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-x-s__image--full-width {
  width: 100%;
}

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

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

.page-x-s__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.page-x-s__card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-x-s__card-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 15px 20px;
}

.page-x-s__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-x-s__steps li {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: relative;
  padding-left: 80px;
}

.page-x-s__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #FFCC00;
  color: #003366;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
}

.page-x-s__steps li h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
}

.page-x-s__steps li p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 20px;
}

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

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

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

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

.page-x-s__advantage-item h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-x-s__advantage-item p {
  font-size: 0.95em;
  color: #555;
}

.page-x-s__accordion {
  margin-top: 40px;
}

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

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

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

.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: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-x-s__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 0;
  color: #333;
}

.page-x-s__accordion-content .page-x-s__btn--small {
  margin-bottom: 15px;
}

.page-x-s__cta-final {
  background: linear-gradient(45deg, #003366, #004080);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  margin-top: 40px;
  border-radius: 8px;
}

.page-x-s__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFCC00;
}

.page-x-s__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-x-s .highlight {
  color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-x-s__hero-title {
    font-size: 2.8em;
  }
  .page-x-s__section-title {
    font-size: 2em;
  }
  .page-x-s__cta-title {
    font-size: 2.5em;
  }
  .page-x-s__game-grid,
  .page-x-s__advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-x-s__steps li {
    padding-left: 60px;
  }
  .page-x-s__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.5em;
    left: 15px;
    top: 25px;
  }
  .page-x-s__steps li h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-x-s__hero {
    padding: 80px 0;
  }
  .page-x-s__hero-title {
    font-size: 2.2em;
  }
  .page-x-s__hero-description {
    font-size: 1.1em;
  }
  .page-x-s__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-x-s__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-x-s__section {
    padding: 40px 0;
  }
  .page-x-s__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-x-s__cta-title {
    font-size: 2em;
  }
  .page-x-s__cta-description {
    font-size: 1em;
  }
  .page-x-s__game-grid,
  .page-x-s__advantages-grid {
    grid-template-columns: 1fr;
  }
  .page-x-s__game-card, .page-x-s__advantage-item {
    margin-bottom: 20px;
  }
  .page-x-s__list li {
    padding: 10px 15px;
    font-size: 1em;
  }
  .page-x-s__accordion-header {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-x-s__accordion-content p {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-x-s__hero-title {
    font-size: 1.8em;
  }
  .page-x-s__hero-description {
    font-size: 0.95em;
  }
  .page-x-s__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-x-s__section-title {
    font-size: 1.5em;
  }
  .page-x-s__cta-title {
    font-size: 1.8em;
  }
  .page-x-s__steps li {
    padding: 20px 20px 20px 60px;
  }
  .page-x-s__steps li::before {
    left: 10px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.3em;
  }
  .page-x-s__steps li h3 {
    font-size: 1.3em;
  }
}