/* style/no-hu-progressive-jackpot-slots.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A202C; /* Dark Charcoal */
  --accent-color: #E53E3E; /* Red for emphasis */
  --text-light: #F7FAFC; /* Light gray for text on dark bg */
  --text-dark: #2D3748; /* Dark gray for text on light bg */
  --background-light: #F7FAFC;
  --background-dark: #1A202C;
  --border-color: #CBD5E0;
}

.page-no-hu-progressive-jackpot-slots {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

.page-no-hu-progressive-jackpot-slots h1, 
.page-no-hu-progressive-jackpot-slots h2, 
.page-no-hu-progressive-jackpot-slots h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu-progressive-jackpot-slots h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu-progressive-jackpot-slots h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 30px;
}

.page-no-hu-progressive-jackpot-slots h3 {
  font-size: 1.6em;
  margin-top: 20px;
}

.page-no-hu-progressive-jackpot-slots p {
  margin-bottom: 15px;
}

.page-no-hu-progressive-jackpot-slots a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu-progressive-jackpot-slots a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.page-no-hu-progressive-jackpot-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-no-hu-progressive-jackpot-slots__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-no-hu-progressive-jackpot-slots__section:last-of-type {
  border-bottom: none;
}

.page-no-hu-progressive-jackpot-slots__hero-banner {
  background: linear-gradient(135deg, var(--secondary-color), #3A4750);
  color: var(--text-light);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-no-hu-progressive-jackpot-slots__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.page-no-hu-progressive-jackpot-slots__hero-content h1 {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-no-hu-progressive-jackpot-slots__hero-content p {
  font-size: 1.3em;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-no-hu-progressive-jackpot-slots__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  display: block; /* Remove extra space below image */
}

.page-no-hu-progressive-jackpot-slots__cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-no-hu-progressive-jackpot-slots__cta-button:hover {
  background-color: #FFC107; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-no-hu-progressive-jackpot-slots__cta-button--secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-no-hu-progressive-jackpot-slots__cta-button--secondary:hover {
  background-color: #3A4750;
  color: #FFC107;
}

.page-no-hu-progressive-jackpot-slots__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-no-hu-progressive-jackpot-slots__features-grid,
.page-no-hu-progressive-jackpot-slots__game-grid,
.page-no-hu-progressive-jackpot-slots__promo-grid,
.page-no-hu-progressive-jackpot-slots__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu-progressive-jackpot-slots__feature-item,
.page-no-hu-progressive-jackpot-slots__game-card,
.page-no-hu-progressive-jackpot-slots__promo-card,
.page-no-hu-progressive-jackpot-slots__news-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu-progressive-jackpot-slots__feature-item:hover,
.page-no-hu-progressive-jackpot-slots__game-card:hover,
.page-no-hu-progressive-jackpot-slots__promo-card:hover,
.page-no-hu-progressive-jackpot-slots__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu-progressive-jackpot-slots__feature-item img,
.page-no-hu-progressive-jackpot-slots__game-card img,
.page-no-hu-progressive-jackpot-slots__promo-card img,
.page-no-hu-progressive-jackpot-slots__news-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-no-hu-progressive-jackpot-slots__feature-item h3,
.page-no-hu-progressive-jackpot-slots__game-card h3,
.page-no-hu-progressive-jackpot-slots__promo-card h3,
.page-no-hu-progressive-jackpot-slots__news-card h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-no-hu-progressive-jackpot-slots__feature-item p,
.page-no-hu-progressive-jackpot-slots__game-card p,
.page-no-hu-progressive-jackpot-slots__promo-card p,
.page-no-hu-progressive-jackpot-slots__news-card p {
  font-size: 1em;
  color: var(--text-dark);
}

.page-no-hu-progressive-jackpot-slots__game-card h3 a,
.page-no-hu-progressive-jackpot-slots__promo-card h3 a,
.page-no-hu-progressive-jackpot-slots__news-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-no-hu-progressive-jackpot-slots__game-card h3 a:hover,
.page-no-hu-progressive-jackpot-slots__promo-card h3 a:hover,
.page-no-hu-progressive-jackpot-slots__news-card h3 a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-no-hu-progressive-jackpot-slots__content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-no-hu-progressive-jackpot-slots__text-content {
  flex: 2;
}

.page-no-hu-progressive-jackpot-slots__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-no-hu-progressive-jackpot-slots__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu-progressive-jackpot-slots__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-no-hu-progressive-jackpot-slots__steps-list li {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 70px;
}

.page-no-hu-progressive-jackpot-slots__steps-list li h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-no-hu-progressive-jackpot-slots__steps-list li::before {
  content: 'Bước ' counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-no-hu-progressive-jackpot-slots__news-date {
  display: block;
  font-size: 0.9em;
  color: #6B7280;
  margin-top: 10px;
}

/* FAQ styles */
.page-no-hu-progressive-jackpot-slots .faq-list {
  margin-top: 40px;
}

.page-no-hu-progressive-jackpot-slots .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.page-no-hu-progressive-jackpot-slots .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-no-hu-progressive-jackpot-slots .faq-question:hover {
  background: #f0f0f0;
}

.page-no-hu-progressive-jackpot-slots .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
}

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

.page-no-hu-progressive-jackpot-slots .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page-no-hu-progressive-jackpot-slots .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: var(--text-dark);
}

.page-no-hu-progressive-jackpot-slots .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-no-hu-progressive-jackpot-slots__hero-content h1 {
    font-size: 2.8em;
  }

  .page-no-hu-progressive-jackpot-slots h2 {
    font-size: 1.8em;
  }

  .page-no-hu-progressive-jackpot-slots__content-with-image {
    flex-direction: column;
  }

  .page-no-hu-progressive-jackpot-slots__image-wrapper {
    min-width: unset;
    width: 100%;
    margin-top: 30px;
  }

  .page-no-hu-progressive-jackpot-slots__feature-item,
  .page-no-hu-progressive-jackpot-slots__game-card,
  .page-no-hu-progressive-jackpot-slots__promo-card,
  .page-no-hu-progressive-jackpot-slots__news-card {
    padding: 20px;
  }

  .page-no-hu-progressive-jackpot-slots__feature-item img,
  .page-no-hu-progressive-jackpot-slots__game-card img,
  .page-no-hu-progressive-jackpot-slots__promo-card img,
  .page-no-hu-progressive-jackpot-slots__news-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-no-hu-progressive-jackpot-slots__hero-content h1 {
    font-size: 2.2em;
  }

  .page-no-hu-progressive-jackpot-slots__hero-content p {
    font-size: 1.1em;
  }

  .page-no-hu-progressive-jackpot-slots__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-no-hu-progressive-jackpot-slots__section {
    padding: 40px 0;
  }
}