/* style/x-s.css */
:root {
  --primary-color: #FFD700; /* Golden Yellow */
  --secondary-color: #1A1A1A; /* Deep Black */
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --background-dark: #1A1A1A;
  --background-light: #F8F8F8;
  --accent-color: #FF4500; /* Orange Red for highlights */
  --border-color: #e0e0e0;
}

.page-x-s {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

.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: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

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

.page-x-s h2 {
  font-size: 2.2em;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 15px;
}

.page-x-s h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

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

.page-x-s p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-x-s .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.page-x-s .cta-button:hover {
  background: var(--accent-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--text-light);
}

.page-x-s .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px 10px 10px 0;
  text-align: center;
}

.page-x-s .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: 1px solid var(--primary-color);
}

.page-x-s .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  border-color: var(--accent-color);
}

.page-x-s .btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.page-x-s .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-color: var(--primary-color);
}

.page-x-s .btn-sm {
  padding: 8px 18px;
  font-size: 0.9em;
  margin: 5px 5px 5px 0;
}

.page-x-s .button-group {
  text-align: center;
  margin-top: 30px;
}

/* 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: 60px 20px;
  background-color: var(--background-dark);
  overflow: hidden;
}

.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;
  position: relative;
  z-index: 1;
}

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

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

.page-x-s .hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

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

/* Introduction Section */
.page-x-s .introduction-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

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

/* Why Choose Section */
.page-x-s .why-choose-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

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

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

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

.page-x-s .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-x-s .feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

/* Game Types Section */
.page-x-s .game-types-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

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

.page-x-s .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  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.15);
}

.page-x-s .game-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-x-s .game-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  text-align: left;
}

.page-x-s .game-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-x-s .game-card h3 a:hover {
  color: var(--primary-color);
}

.page-x-s .game-card p {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px;
  text-align: justify;
}

/* How To Play Section */
.page-x-s .how-to-play-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-x-s .step-list {
  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: left;
}

.page-x-s .step-item h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: left;
}

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

/* Promotions Section */
.page-x-s .promotions-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

.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-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-x-s .promo-item .promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.page-x-s .promo-item h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  text-align: left;
  color: var(--secondary-color);
}

.page-x-s .promo-item p {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px;
  text-align: justify;
}

/* Security Section */
.page-x-s .security-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
}

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

.page-x-s .security-section h3 {
  color: var(--primary-color);
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.page-x-s .security-section p {
  color: #ccc;
  font-size: 1.05em;
}

.page-x-s .security-section .button-group .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-color: var(--primary-color);
}

.page-x-s .security-section .button-group .btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  border-color: var(--accent-color);
}

.page-x-s .security-section .button-group .btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-x-s .security-section .button-group .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border-color: var(--primary-color);
}

/* FAQ Section */
.page-x-s .faq-section {
  background-color: var(--background-light);
  padding: 80px 0;
}

.page-x-s .faq-list {
  margin-top: 40px;
}

.page-x-s .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.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: #f9f9f9;
  color: #444;
}

.page-x-s .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

.page-x-s .faq-answer p {
  margin-bottom: 10px;
  text-align: justify;
}

/* Latest News Section */
.page-x-s .latest-news-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

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

.page-x-s .news-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-x-s .news-item .news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-x-s .news-item h3 {
  font-size: 1.3em;
  margin: 20px 15px 10px;
  text-align: left;
}

.page-x-s .news-item h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-x-s .news-item h3 a:hover {
  color: var(--primary-color);
}

.page-x-s .news-item p {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 15px;
  text-align: justify;
}

.page-x-s .news-item .read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  padding: 0 15px 20px;
  transition: color 0.3s ease;
}

.page-x-s .news-item .read-more:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Call to Action Section */
.page-x-s .call-to-action-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-x-s .call-to-action-section h2 {
  color: var(--text-dark);
  font-size: 2.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-x-s .call-to-action-section .cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-x-s .call-to-action-section .cta-button:hover {
  background: var(--text-dark);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-x-s h1 {
    font-size: 2.5em;
  }
  .page-x-s h2 {
    font-size: 2em;
  }
  .page-x-s h3 {
    font-size: 1.4em;
  }
  .page-x-s .hero-content h1 {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-x-s section {
    padding: 40px 0;
  }
  .page-x-s h1 {
    font-size: 2em;
  }
  .page-x-s h2 {
    font-size: 1.8em;
  }
  .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: 16px;
  }
  .page-x-s .feature-grid, .page-x-s .game-cards, .page-x-s .step-list, .page-x-s .promo-grid, .page-x-s .news-grid {
    grid-template-columns: 1fr;
  }
  .page-x-s .feature-item h3, .page-x-s .game-card h3, .page-x-s .step-item h3, .page-x-s .promo-item h3, .page-x-s .news-item h3 {
    text-align: center;
  }
  .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-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-x-s .button-group {
    flex-direction: column;
    align-items: center;
  }
  .page-x-s .btn {
    width: 80%;
    margin-right: 0;
  }
  .page-x-s .call-to-action-section h2 {
    font-size: 2em;
  }
  .page-x-s .security-section h3 {
    font-size: 1.5em;
  }
}

@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 h1 {
    font-size: 2em;
  }
  .page-x-s .hero-content p {
    font-size: 0.9em;
  }
  .page-x-s .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-x-s .faq-question h3 {
    font-size: 1em;
  }
  .page-x-s .call-to-action-section h2 {
    font-size: 1.8em;
  }
}