/* style/x-s.css */
.page-x-s {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

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

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

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

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

/* Hero Section */
.page-x-s__hero-section {
  background: linear-gradient(135deg, #0A2463, #3c5eab);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

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

.page-x-s__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-x-s__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-x-s__hero-image {
  display: none; /* Hidden on desktop, shown on smaller screens if needed */
}

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

.page-x-s__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-x-s__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-x-s__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

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

.page-x-s__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-x-s__text-link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-x-s__text-link:hover {
  color: #FFD700;
}

/* Why Choose Section */
.page-x-s__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

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

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

.page-x-s__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

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

.page-x-s__game-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-x-s__game-card:hover {
  transform: translateY(-5px);
}

.page-x-s__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.page-x-s__game-card p {
  padding: 0 15px 20px;
  flex-grow: 1;
}

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

/* How To Section */
.page-x-s__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-x-s__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-x-s__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A2463;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #0A2463;
}

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

/* Tips Section */
.page-x-s__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-x-s__tips-list li {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

.page-x-s__tips-list li strong {
  color: #0A2463;
}

.page-x-s__cta-section {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

/* App Promo Section */
.page-x-s__app-promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.page-x-s__app-text {
  flex: 1;
  min-width: 300px;
}

.page-x-s__app-text .page-x-s__section-title {
  text-align: left;
  margin-bottom: 20px;
}

.page-x-s__app-text p {
  margin-bottom: 20px;
}

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

.page-x-s__app-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFD700" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
}

.page-x-s__app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-x-s__app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsible Gambling Section */
.page-x-s__responsible-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-x-s__responsible-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-x-s__responsible-list li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-x-s__faq-items {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-x-s__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  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;
  color: #FFD700;
}

.page-x-s__faq-question.active::after {
  content: '-';
}

.page-x-s__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

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

/* Conclusion Section */
.page-x-s__section--conclusion {
  text-align: center;
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
}

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

.page-x-s__section--conclusion .page-x-s__section-intro,
.page-x-s__section--conclusion .page-x-s__section-outro {
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s__section--conclusion .page-x-s__text-link {
  color: #FFD700;
}

.page-x-s__section--conclusion .page-x-s__text-link:hover {
  color: #fff;
}

/* 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__app-promo-content {
    flex-direction: column;
  }
  .page-x-s__app-text .page-x-s__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-x-s__hero-title {
    font-size: 2.2em;
  }
  .page-x-s__hero-description {
    font-size: 1.1em;
  }
  .page-x-s__section {
    padding: 40px 0;
  }
  .page-x-s__section-title {
    font-size: 1.8em;
  }
  .page-x-s__features-grid, .page-x-s__game-grid, .page-x-s__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-x-s__app-image img {
    max-width: 80%;
  }
  .page-x-s__step-item {
    padding-top: 40px;
  }
  .page-x-s__step-number {
    top: -25px;
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
  .page-x-s__faq-question {
    font-size: 1.15em;
  }
  .page-x-s__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-x-s__hero-section {
    padding: 60px 0;
  }
  .page-x-s__hero-title {
    font-size: 1.8em;
  }
  .page-x-s__hero-description {
    font-size: 1em;
  }
  .page-x-s__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-x-s__section-title {
    font-size: 1.5em;
  }
  .page-x-s__section-intro, .page-x-s__section-outro {
    font-size: 0.95em;
  }
  .page-x-s__app-image img {
    max-width: 90%;
  }
  .page-x-s__faq-question {
    font-size: 1.1em;
  }
  .page-x-s__faq-answer {
    font-size: 0.95em;
  }
}