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

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

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

.page-x-s h1, .page-x-s h2, .page-x-s h3 {
  color: #E0B400;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-x-s h1 {
  font-size: 3.2em;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-x-s h2 {
  font-size: 2.5em;
  margin-top: 40px;
}

.page-x-s h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #E0B400;
}

.page-x-s p {
  font-size: 1.1em;
  color: #D0D0D0;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .text-center {
  text-align: center;
}

/* Hero Section */
.page-x-s .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(145deg, #0A192F, #1A2F4A);
  border-bottom: 5px solid #E0B400;
}

.page-x-s .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-x-s .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-x-s .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-x-s .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-x-s .hero-content p {
  font-size: 1.25em;
  color: #CCCCCC;
  margin-bottom: 30px;
}

.page-x-s .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E0B400;
  color: #0A192F;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(224, 180, 0, 0.4);
  text-transform: uppercase;
}

.page-x-s .cta-button:hover {
  background: #FFD700;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(224, 180, 0, 0.6);
}

/* Intro Section */
.page-x-s .section-intro {
  background-color: #0A192F;
  border-bottom: 1px solid rgba(224, 180, 0, 0.3);
}

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

.page-x-s .feature-item {
  background-color: #1A2F4A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

.page-x-s .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-x-s .feature-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-x-s .feature-item h3 {
  color: #E0B400;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-x-s .feature-item p {
  font-size: 1em;
  color: #C0C0C0;
  text-align: left;
}

/* How-to-Play Section */
.page-x-s .section-how-to-play {
  background-color: #11223D;
  border-bottom: 1px solid rgba(224, 180, 0, 0.3);
}

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

.page-x-s .step-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(224, 180, 0, 0.2);
}

.page-x-s .step-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-x-s .step-item p {
  font-size: 1em;
  color: #C0C0C0;
  text-align: left;
  margin-bottom: 20px;
}

.page-x-s .button-small {
  display: inline-block;
  padding: 10px 25px;
  background: #E0B400;
  color: #0A192F;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-x-s .button-small:hover {
  background: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(224, 180, 0, 0.4);
}

/* Tips Section */
.page-x-s .section-tips {
  background-color: #0A192F;
  border-bottom: 1px solid rgba(224, 180, 0, 0.3);
}

.page-x-s .tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-x-s .tips-list li {
  background-color: #1A2F4A;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #E0B400;
}

.page-x-s .tips-list li h3 {
  text-align: left;
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #E0B400;
}

.page-x-s .tips-list li p {
  text-align: left;
  color: #C0C0C0;
  margin-bottom: 0;
}

/* Promotions Section */
.page-x-s .section-promotions {
  background-color: #11223D;
  border-bottom: 1px solid rgba(224, 180, 0, 0.3);
}

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

.page-x-s .promo-card {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(224, 180, 0, 0.2);
}

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

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

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

.page-x-s .promo-card p {
  font-size: 1em;
  color: #C0C0C0;
  text-align: center;
}

/* Responsible Gambling Section */
.page-x-s .section-responsible-gambling {
  background-color: #0A192F;
  border-bottom: 1px solid rgba(224, 180, 0, 0.3);
}

.page-x-s .section-responsible-gambling ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .section-responsible-gambling ul li {
  background-color: #1A2F4A;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #E0B400;
  color: #C0C0C0;
  font-size: 1.05em;
  text-align: left;
}

.page-x-s .section-responsible-gambling ul li strong {
  color: #E0B400;
}

/* FAQ Section */
.page-x-s .section-faq {
  background-color: #11223D;
}

.page-x-s .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-x-s .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2F4A;
  border: 1px solid rgba(224, 180, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-x-s .faq-question:hover {
  background: #253F5C;
}

.page-x-s .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #E0B400;
  text-align: left;
  flex-grow: 1;
}

.page-x-s .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E0B400;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-x-s .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #0A192F;
  color: #D0D0D0;
}

.page-x-s .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
  border-top: 1px solid rgba(224, 180, 0, 0.1);
}

.page-x-s .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-x-s .faq-answer p {
  text-align: left;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-x-s h1 {
    font-size: 2.8em;
  }
  .page-x-s h2 {
    font-size: 2.2em;
  }
  .page-x-s .hero-content p {
    font-size: 1.1em;
  }
  .page-x-s .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-x-s section {
    padding: 40px 0;
  }
  .page-x-s h1 {
    font-size: 2.2em;
  }
  .page-x-s h2 {
    font-size: 1.8em;
  }
  .page-x-s h3 {
    font-size: 1.4em;
  }
  .page-x-s p {
    font-size: 1em;
  }
  .page-x-s .hero-image {
    margin-bottom: 20px;
  }
  .page-x-s .hero-image img {
    border-radius: 8px;
  }
  .page-x-s .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
    margin-top: 20px;
  }
  .page-x-s .features-grid, .page-x-s .steps-grid, .page-x-s .promo-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-x-s .feature-item, .page-x-s .step-item, .page-x-s .promo-card {
    padding: 25px;
  }
  .page-x-s .feature-item img, .page-x-s .step-item img, .page-x-s .promo-card img {
    max-width: 200px;
  }
  .page-x-s .tips-list li {
    padding: 20px;
  }
  .page-x-s .tips-list li h3 {
    font-size: 1.4em;
  }
  .page-x-s .faq-question {
    padding: 15px 20px;
  }
  .page-x-s .faq-question h3 {
    font-size: 1.1em;
  }
  .page-x-s .faq-toggle {
    font-size: 20px;
  }
  .page-x-s .faq-answer {
    padding: 0 20px;
  }
  .page-x-s .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-x-s h1 {
    font-size: 1.8em;
  }
  .page-x-s h2 {
    font-size: 1.6em;
  }
  .page-x-s .hero-content p {
    font-size: 0.95em;
  }
  .page-x-s .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-x-s .feature-item h3, .page-x-s .step-item h3, .page-x-s .promo-card h3, .page-x-s .tips-list li h3 {
    font-size: 1.2em;
  }
  .page-x-s .feature-item p, .page-x-s .step-item p, .page-x-s .promo-card p, .page-x-s .tips-list li p {
    font-size: 0.9em;
  }
  .page-x-s .faq-question h3 {
    font-size: 1em;
  }
  .page-x-s .faq-toggle {
    font-size: 18px;
  }
}