.page-x-s-fast-lottery-guide {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #F8F8F8;
  --text-dark: #1A202C;
  --bg-dark: #1A202C;
  --bg-light: #FFFFFF;
  --accent-color: #FFD700;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

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

.page-x-s-fast-lottery-guide .section-intro, 
.page-x-s-fast-lottery-guide .section-types, 
.page-x-s-fast-lottery-guide .section-guide, 
.page-x-s-fast-lottery-guide .section-strategy, 
.page-x-s-fast-lottery-guide .section-promotions, 
.page-x-s-fast-lottery-guide .section-safety-support, 
.page-x-s-fast-lottery-guide .section-faq, 
.page-x-s-fast-lottery-guide .section-latest-news {
  padding: 60px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-x-s-fast-lottery-guide .section-intro p, 
.page-x-s-fast-lottery-guide .section-types p, 
.page-x-s-fast-lottery-guide .section-guide p, 
.page-x-s-fast-lottery-guide .section-strategy p, 
.page-x-s-fast-lottery-guide .section-promotions p, 
.page-x-s-fast-lottery-guide .section-safety-support p, 
.page-x-s-fast-lottery-guide .section-faq p, 
.page-x-s-fast-lottery-guide .section-latest-news p {
  color: #CCCCCC;
}

.page-x-s-fast-lottery-guide h1, 
.page-x-s-fast-lottery-guide h2, 
.page-x-s-fast-lottery-guide h3 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-x-s-fast-lottery-guide h1 {
  font-size: 2.8em;
}

.page-x-s-fast-lottery-guide h2 {
  font-size: 2.2em;
  margin-top: 40px;
}

.page-x-s-fast-lottery-guide h3 {
  font-size: 1.8em;
  color: var(--text-light);
}

.page-x-s-fast-lottery-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.page-x-s-fast-lottery-guide .cta-button:hover {
  background: #FFC107; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-x-s-fast-lottery-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-dark);
  overflow: hidden;
}

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

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

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

.page-x-s-fast-lottery-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-x-s-fast-lottery-guide .hero-content h1 {
  color: var(--secondary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-x-s-fast-lottery-guide .hero-content p {
  color: var(--text-light);
  font-size: 1.2em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Type Grid */
.page-x-s-fast-lottery-guide .type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-x-s-fast-lottery-guide .type-card {
  background-color: #2C3E50; /* Slightly lighter dark for cards */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-x-s-fast-lottery-guide .type-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-x-s-fast-lottery-guide .type-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-x-s-fast-lottery-guide .type-card h3 a:hover {
  color: #FFC107;
}

.page-x-s-fast-lottery-guide .type-card p {
  color: #B0B0B0;
  font-size: 0.95em;
}

/* Guide Steps */
.page-x-s-fast-lottery-guide .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-x-s-fast-lottery-guide .step-item {
  background-color: #2C3E50;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-x-s-fast-lottery-guide .step-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-x-s-fast-lottery-guide .step-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-x-s-fast-lottery-guide .step-item p {
  color: #B0B0B0;
}

.page-x-s-fast-lottery-guide .cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Strategy List */
.page-x-s-fast-lottery-guide .strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-x-s-fast-lottery-guide .strategy-list li {
  background-color: #2C3E50;
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-x-s-fast-lottery-guide .strategy-list li h3 {
  text-align: left;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.6em;
}

.page-x-s-fast-lottery-guide .strategy-list li p {
  color: #B0B0B0;
  text-align: left;
}

/* Promotions Grid */
.page-x-s-fast-lottery-guide .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-x-s-fast-lottery-guide .promo-card {
  background-color: #2C3E50;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-x-s-fast-lottery-guide .promo-card img {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-x-s-fast-lottery-guide .promo-card h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-x-s-fast-lottery-guide .promo-card h3 a:hover {
  color: #FFC107;
}

.page-x-s-fast-lottery-guide .promo-card p {
  color: #B0B0B0;
}

/* Safety Features */
.page-x-s-fast-lottery-guide .safety-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-x-s-fast-lottery-guide .feature-item {
  background-color: #2C3E50;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-x-s-fast-lottery-guide .feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-x-s-fast-lottery-guide .feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-x-s-fast-lottery-guide .feature-item p {
  color: #B0B0B0;
}

/* FAQ Section */
.page-x-s-fast-lottery-guide .faq-list {
  margin-top: 40px;
}

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

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

.page-x-s-fast-lottery-guide .faq-question:hover {
  background: #3a506b;
}

.page-x-s-fast-lottery-guide .faq-question h3 {
  margin: 0;
  color: var(--text-light);
  text-align: left;
  flex-grow: 1;
  font-size: 1.2em;
}

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

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

.page-x-s-fast-lottery-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #3a506b;
  color: #B0B0B0;
}

.page-x-s-fast-lottery-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-x-s-fast-lottery-guide .faq-answer p {
  margin: 0;
  color: #B0B0B0;
}

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

.page-x-s-fast-lottery-guide .news-card {
  background-color: #2C3E50;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-x-s-fast-lottery-guide .news-card img {
  width: 100%;
  height: 200px; /* Fixed height for news images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-x-s-fast-lottery-guide .news-card h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
  text-align: left;
}

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

.page-x-s-fast-lottery-guide .news-card h3 a:hover {
  color: #FFC107;
}

.page-x-s-fast-lottery-guide .news-card p {
  color: #B0B0B0;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-x-s-fast-lottery-guide .news-card .read-more {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-x-s-fast-lottery-guide .news-card .read-more:hover {
  color: #FFC107;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-x-s-fast-lottery-guide .hero-content h1 {
    font-size: 2.8em;
  }

  .page-x-s-fast-lottery-guide h2 {
    font-size: 1.8em;
  }

  .page-x-s-fast-lottery-guide h3 {
    font-size: 1.5em;
  }

  .page-x-s-fast-lottery-guide .type-grid, 
  .page-x-s-fast-lottery-guide .guide-steps, 
  .page-x-s-fast-lottery-guide .promo-grid, 
  .page-x-s-fast-lottery-guide .safety-features, 
  .page-x-s-fast-lottery-guide .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-x-s-fast-lottery-guide .hero-section {
    padding: 60px 15px;
  }

  .page-x-s-fast-lottery-guide .hero-content h1 {
    font-size: 2.2em;
  }

  .page-x-s-fast-lottery-guide .hero-content p {
    font-size: 1em;
  }

  .page-x-s-fast-lottery-guide .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-x-s-fast-lottery-guide .section-intro, 
  .page-x-s-fast-lottery-guide .section-types, 
  .page-x-s-fast-lottery-guide .section-guide, 
  .page-x-s-fast-lottery-guide .section-strategy, 
  .page-x-s-fast-lottery-guide .section-promotions, 
  .page-x-s-fast-lottery-guide .section-safety-support, 
  .page-x-s-fast-lottery-guide .section-faq, 
  .page-x-s-fast-lottery-guide .section-latest-news {
    padding: 40px 0;
  }

  .page-x-s-fast-lottery-guide h2 {
    font-size: 1.6em;
  }

  .page-x-s-fast-lottery-guide .faq-question {
    padding: 15px 20px;
  }

  .page-x-s-fast-lottery-guide .faq-question h3 {
    font-size: 1.1em;
  }

  .page-x-s-fast-lottery-guide .faq-toggle {
    font-size: 20px;
  }

  .page-x-s-fast-lottery-guide .faq-answer {
    padding: 0 20px;
  }

  .page-x-s-fast-lottery-guide .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}