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

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

.page-x-s__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #FFF;
}

.page-x-s__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-x-s__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.page-x-s__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

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

.page-x-s__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #DDD;
}

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

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

.page-x-s__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-x-s__section-intro {
  font-size: 1.1em;
  color: #BBB;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-x-s__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-x-s__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-x-s__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-x-s__card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.page-x-s__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-x-s__card-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-x-s__card-text {
  color: #CCC;
  font-size: 0.95em;
}

.page-x-s__game-type-item {
  display: flex;
  align-items: center;
  background-color: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  padding: 20px;
  border: 1px solid #333;
}

.page-x-s__game-type-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-x-s__game-type-content {
  flex-grow: 1;
}

.page-x-s__game-type-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-x-s__game-type-description {
  color: #CCC;
  font-size: 0.95em;
}

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

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

.page-x-s__step-number {
  width: 60px;
  height: 60px;
  background-color: #1E90FF;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

.page-x-s__step-description {
  color: #CCC;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-x-s__tip-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #333;
}

.page-x-s__tip-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-x-s__tip-description {
  color: #CCC;
  font-size: 0.95em;
}

.page-x-s__responsible-gambling .page-x-s__paragraph {
  color: #CCC;
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto 40px auto;
}

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

.page-x-s__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #333;
}

.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: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-x-s__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-x-s__faq-answer {
  color: #CCC;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-x-s__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 10px;
}

.page-x-s__button {
  display: inline-block;
  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;
  cursor: pointer;
  border: none;
}

.page-x-s__button--primary {
  background-color: #FFD700;
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-x-s__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-x-s__button--secondary {
  background-color: #1E90FF;
  color: #FFF;
  box-shadow: 0 4px 10px rgba(30, 144, 255, 0.4);
  margin-top: 20px;
}

.page-x-s__button--secondary:hover {
  background-color: #1a7ae6;
  transform: translateY(-2px);
}

.page-x-s__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-x-s__cta {
  background-color: #1E90FF;
  padding: 80px 0;
}

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

.page-x-s__cta .page-x-s__section-intro {
  color: #FFF;
}

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

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

  .page-x-s__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-x-s__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .page-x-s__game-type-item {
    flex-direction: column;
    text-align: center;
  }

  .page-x-s__game-type-image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
  }

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

@media (max-width: 768px) {
  .page-x-s__hero {
    height: 400px;
  }

  .page-x-s__hero-title {
    font-size: 2.2em;
  }

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

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

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

  .page-x-s__section-intro {
    font-size: 0.95em;
  }

  .page-x-s__card {
    padding: 20px;
  }

  .page-x-s__card-title {
    font-size: 1.4em;
  }

  .page-x-s__game-type-item {
    padding: 15px;
  }

  .page-x-s__game-type-title {
    font-size: 1.6em;
  }

  .page-x-s__step-item {
    padding: 25px;
  }

  .page-x-s__step-title {
    font-size: 1.6em;
  }

  .page-x-s__tip-item {
    padding: 25px;
  }

  .page-x-s__tip-title {
    font-size: 1.4em;
  }

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

  .page-x-s__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-x-s__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-x-s__hero {
    height: 350px;
  }

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

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

  .page-x-s__grid--2-cols {
    grid-template-columns: 1fr;
  }

  .page-x-s__game-type-image {
    height: 150px;
  }
}