.page-x-s {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #B22222; /* Crimson */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-dark: #1a1a1a;
  --background-light: #f4f4f4;
  --card-bg: #2a2a2a;
  --border-color: #444444;
  --button-hover-bg: #e6c200;
}

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

.page-x-s section {
  padding: 60px 0;
  text-align: center;
  color: var(--text-color-dark);
}

.page-x-s section:nth-child(even) {
  background-color: var(--background-light);
}

.page-x-s section:nth-child(odd) {
  background-color: #ffffff;
}

.page-x-s h1, .page-x-s h2, .page-x-s h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.page-x-s h1 {
  font-size: 3.2em;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.page-x-s h3 {
  font-size: 1.8em;
  color: var(--text-color-dark);
}

.page-x-s p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-x-s .hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8b0000 100%);
  padding: 80px 0;
  color: var(--text-color-light);
  position: relative;
  overflow: hidden;
}

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

.page-x-s .hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-x-s .hero-content {
  text-align: center;
  max-width: 900px;
}

.page-x-s .hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-x-s .hero-content p {
  color: var(--text-color-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-x-s .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-x-s .cta-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-x-s .intro-section h3 {
  color: var(--secondary-color);
}

.page-x-s .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-x-s .feature-list li {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-x-s .feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-x-s .feature-list li strong {
  color: var(--secondary-color);
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

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

.page-x-s .game-card {
  background-color: var(--card-bg);
  color: var(--text-color-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-x-s .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-x-s .game-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-x-s .game-card h3 {
  font-size: 1.5em;
  margin: 20px 20px 10px;
  color: var(--primary-color);
}

.page-x-s .game-card .card-title-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-x-s .game-card .card-title-link:hover {
  color: var(--button-hover-bg);
}

.page-x-s .game-card p, .page-x-s .game-card ul {
  padding: 0 20px;
  color: #e0e0e0;
}

.page-x-s .game-card ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 15px;
}

.page-x-s .game-card .button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  margin: 15px 20px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-x-s .game-card .button:hover {
  background: #8B0000;
}

.page-x-s .guide-section {
  background-color: var(--background-light);
}

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

.page-x-s .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  border-top: 5px solid var(--primary-color);
}

.page-x-s .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s .step-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-x-s .step-item p {
  color: var(--text-color-dark);
  margin-bottom: 25px;
}

.page-x-s .step-item .button {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-x-s .step-item .primary-button {
  background: var(--primary-color);
  color: var(--text-color-dark);
}

.page-x-s .step-item .primary-button:hover {
  background: var(--button-hover-bg);
  transform: translateY(-2px);
}

.page-x-s .step-item .secondary-button {
  background: var(--secondary-color);
  color: var(--text-color-light);
}

.page-x-s .step-item .secondary-button:hover {
  background: #8B0000;
  transform: translateY(-2px);
}

.page-x-s .tips-section {
  background-color: #ffffff;
}

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

.page-x-s .tips-list li {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-x-s .tips-list li .tip-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-x-s .tips-list li h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-x-s .tips-list li p {
  color: var(--text-color-dark);
  font-size: 1em;
}

.page-x-s .promotions-section {
  background-color: var(--background-light);
}

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

.page-x-s .promo-card {
  background-color: var(--card-bg);
  color: var(--text-color-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-x-s .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-x-s .promo-card .card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-x-s .promo-card h3 {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  color: var(--primary-color);
}

.page-x-s .promo-card .card-title-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-x-s .promo-card .card-title-link:hover {
  color: var(--button-hover-bg);
}

.page-x-s .promo-card p {
  padding: 0 20px;
  color: #e0e0e0;
}

.page-x-s .promo-card .button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  margin: 15px 20px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-x-s .promo-card .button:hover {
  background: #8B0000;
}

.page-x-s .text-center {
  text-align: center;
  margin-top: 40px;
}

.page-x-s .large-button {
  padding: 18px 50px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-x-s .security-section {
  background-color: #ffffff;
}

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

.page-x-s .security-features li {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-x-s .security-features li .feature-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-x-s .security-features li h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-x-s .security-features li p {
  color: var(--text-color-dark);
  font-size: 1em;
}

.page-x-s .faq-section {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-x-s .faq-section h2 {
  color: var(--primary-color);
}

.page-x-s .faq-section p {
  color: #e0e0e0;
}

.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;
  border: 1px solid var(--border-color);
}

.page-x-s .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #3a3a3a;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-x-s .faq-question:hover {
  background: #4a4a4a;
}

.page-x-s .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--primary-color);
}

.page-x-s .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.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: #2a2a2a;
  color: #e0e0e0;
  text-align: left;
}

.page-x-s .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-x-s .faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

.page-x-s .conclusion-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #8b0000 100%);
  color: var(--text-color-light);
  padding: 70px 0;
}

.page-x-s .conclusion-section h2 {
  color: var(--primary-color);
  font-size: 2.8em;
}

.page-x-s .conclusion-section p {
  color: var(--text-color-light);
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-x-s .hero-content h1 {
    font-size: 3em;
  }
  .page-x-s h2 {
    font-size: 2.2em;
  }
  .page-x-s h3 {
    font-size: 1.6em;
  }
  .page-x-s .feature-list, .page-x-s .game-grid, .page-x-s .step-by-step, .page-x-s .tips-list, .page-x-s .promo-grid, .page-x-s .security-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-x-s section {
    padding: 40px 0;
  }
  .page-x-s .hero-content h1 {
    font-size: 2.5em;
  }
  .page-x-s .hero-content p {
    font-size: 1em;
  }
  .page-x-s .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-x-s h1 {
    font-size: 2.8em;
  }
  .page-x-s h2 {
    font-size: 2em;
  }
  .page-x-s h3 {
    font-size: 1.4em;
  }
  .page-x-s p {
    font-size: 0.95em;
  }
  .page-x-s .feature-list, .page-x-s .game-grid, .page-x-s .step-by-step, .page-x-s .tips-list, .page-x-s .promo-grid, .page-x-s .security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-x-s .game-card, .page-x-s .promo-card, .page-x-s .step-item, .page-x-s .feature-list li, .page-x-s .tips-list li, .page-x-s .security-features li {
    padding: 20px;
  }
  .page-x-s .step-item .button {
    width: 100%;
    margin-top: 15px;
  }
  .page-x-s .large-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .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: 1.5em;
  }
  .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 .hero-content h1 {
    font-size: 2em;
  }
  .page-x-s .hero-image {
    margin-bottom: 20px;
  }
  .page-x-s .hero-content p {
    font-size: 0.9em;
  }
  .page-x-s h1 {
    font-size: 2.2em;
  }
  .page-x-s h2 {
    font-size: 1.8em;
  }
  .page-x-s h3 {
    font-size: 1.2em;
  }
  .page-x-s .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-x-s .large-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}