.page-x-s {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #1A2B3C; /* Dark blue background */
  line-height: 1.6;
}

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

.page-x-s .hero-section {
  background: linear-gradient(135deg, #FFD700, #1A2B3C);
  padding: 100px 0;
  text-align: center;
  color: #1A2B3C; /* Dark text on light gradient */
}

.page-x-s .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #1A2B3C; /* Dark text for title */
  font-weight: bold;
}

.page-x-s .hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333333; /* Slightly darker grey for description */
}

.page-x-s .hero-actions .btn {
  margin: 0 15px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-x-s .btn-primary:hover {
  background-color: #33475C;
  transform: translateY(-3px);
}

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

.page-x-s .btn-secondary:hover {
  background-color: #1A2B3C;
  color: #FFD700;
  transform: translateY(-3px);
}

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

.page-x-s section:nth-of-type(even) {
  background-color: #2a3d4f; /* Slightly lighter dark blue for contrast */
}

.page-x-s .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-x-s .section-text {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .image-block {
  text-align: center;
  margin: 40px 0;
}

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

.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: #2a3d4f; /* Lighter dark blue for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-x-s .card-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-x-s .btn-card {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #1A2B3C;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-x-s .btn-card:hover {
  background-color: #e6c200;
  color: #0d1a26;
}

.page-x-s .steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-x-s .steps-list li {
  background-color: #2a3d4f;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  padding-left: 80px;
}

.page-x-s .steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2B3C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

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

.page-x-s .steps-list p {
  color: #E0E0E0;
  margin: 0;
}

.page-x-s .steps-list p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-x-s .steps-list p a:hover {
  text-decoration: underline;
}

.page-x-s .tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-x-s .tips-list li {
  background-color: #2a3d4f;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: #E0E0E0;
}

.page-x-s .tips-list li strong {
  color: #FFD700;
}

.page-x-s .advantages-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-x-s .advantages-list li {
  background-color: #2a3d4f;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 50px;
  color: #E0E0E0;
}

.page-x-s .advantages-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD700;
  font-size: 1.5em;
  font-weight: bold;
}

.page-x-s .call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #FFD700;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: #1A2B3C;
}

.page-x-s .cta-text {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1A2B3C;
}

.page-x-s .call-to-action .btn {
  margin: 0 15px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-x-s .call-to-action .btn-primary {
  background-color: #1A2B3C;
  color: #FFD700;
  border: 2px solid #1A2B3C;
}

.page-x-s .call-to-action .btn-primary:hover {
  background-color: #33475C;
  transform: translateY(-3px);
}

.page-x-s .call-to-action .btn-secondary {
  background-color: transparent;
  color: #1A2B3C;
  border: 2px solid #1A2B3C;
}

.page-x-s .call-to-action .btn-secondary:hover {
  background-color: #1A2B3C;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-x-s .faq-section {
  background-color: #1A2B3C;
}

.page-x-s .faq-item {
  background-color: #2a3d4f;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-x-s .faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  margin-top: 10px;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #3d5063;
}

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

.page-x-s h1, .page-x-s h2, .page-x-s h3, .page-x-s h4, .page-x-s h5, .page-x-s h6 {
  font-weight: bold;
}

.page-x-s a {
  color: #FFD700;
  text-decoration: none;
}

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

/* 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 .hero-actions .btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }

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

  .page-x-s .game-grid {
    grid-template-columns: 1fr;
  }

  .page-x-s .steps-list li,
  .page-x-s .advantages-list li {
    padding-left: 25px;
  }

  .page-x-s .steps-list li::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }

  .page-x-s .advantages-list li::before {
    left: 15px;
    font-size: 1.2em;
  }

  .page-x-s .cta-text {
    font-size: 1.4em;
  }

  .page-x-s .call-to-action .btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

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

  .page-x-s .hero-description {
    font-size: 0.9em;
  }

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

  .page-x-s .game-card {
    padding: 15px;
  }

  .page-x-s .card-title {
    font-size: 1.5em;
  }

  .page-x-s .step-title {
    font-size: 1.3em;
  }

  .page-x-s .faq-question {
    font-size: 1.2em;
  }
}