.page-slot-games {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #1A202C;
  --bg-dark: #1A202C;
  --bg-light: #f4f4f4;
  --accent-color: #FFD700;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

.page-slot-games a {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-slot-games a:hover {
  text-decoration: underline;
}

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

.page-slot-games h1, .page-slot-games h2, .page-slot-games h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-slot-games h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-slot-games h2 {
  font-size: 2.2em;
  color: var(--secondary-color);
  padding-top: 40px;
}

.page-slot-games h3 {
  font-size: 1.6em;
  color: var(--text-light);
}

.page-slot-games p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-slot-games .hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-dark);
}

.page-slot-games .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-slot-games .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-slot-games .hero-content h1 {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games .hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-slot-games .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: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games .cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.page-slot-games .introduction-section, .page-slot-games .how-to-play-section, .page-slot-games .latest-blog-section {
  background: var(--bg-dark);
  padding: 60px 0;
}

.page-slot-games .why-choose-k8vina-section, .page-slot-games .game-types-section, .page-slot-games .promotions-section, .page-slot-games .faq-section {
  background: #28303e; /* Slightly lighter dark for contrast */
  padding: 60px 0;
}

.page-slot-games .why-choose-k8vina-section h2, .page-slot-games .game-types-section h2, .page-slot-games .promotions-section h2, .page-slot-games .faq-section h2 {
  color: var(--secondary-color);
}

.page-slot-games .features-grid, .page-slot-games .game-cards-grid, .page-slot-games .blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games .feature-item, .page-slot-games .game-card, .page-slot-games .blog-card {
  background: #1A202C;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games .feature-item:hover, .page-slot-games .game-card:hover, .page-slot-games .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games .feature-icon {
  width: 100px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.page-slot-games .feature-item h3, .page-slot-games .game-card h3, .page-slot-games .blog-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.4em;
}

.page-slot-games .feature-item p, .page-slot-games .game-card p, .page-slot-games .blog-card p {
  color: var(--text-light);
  font-size: 0.95em;
}

.page-slot-games .game-card .card-image, .page-slot-games .blog-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-slot-games .game-card {
  color: var(--text-light);
}

.page-slot-games .game-card h3 {
  margin-top: auto; /* Push title to bottom if content is short */
}

.page-slot-games .text-center-call-to-action {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-slot-games .step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games .step-list li {
  background: #28303e;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games .step-list li h3 {
  color: var(--secondary-color);
  text-align: left;
  margin-bottom: 10px;
}

.page-slot-games .step-list li p {
  color: var(--text-light);
  text-align: left;
}

.page-slot-games .promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games .promo-list li {
  display: flex;
  align-items: flex-start;
  background: #1A202C;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-light);
}

.page-slot-games .promo-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-slot-games .promo-list li strong {
  color: var(--secondary-color);
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-slot-games .faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--bg-dark);
  border: 1px solid #3a4454; /* Darker border for contrast */
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--text-light);
}

.faq-question:hover {
  background: #28303e;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-light);
  text-align: left;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A202C; /* Darker background for answer */
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height */
  padding: 20px 25px;
  border-top: 1px solid #3a4454;
}

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

.page-slot-games .blog-card {
  text-align: left;
}

.page-slot-games .blog-card h3 {
  color: var(--secondary-color);
  text-align: left;
  font-size: 1.3em;
}

.page-slot-games .blog-card p {
  color: var(--text-light);
  font-size: 0.9em;
  flex-grow: 1;
}

.page-slot-games .read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-color);
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slot-games .read-more:hover {
  color: #e6c200;
}

.page-slot-games .text-center {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games h1 {
    font-size: 2.2em;
  }
  .page-slot-games h2 {
    font-size: 1.8em;
  }
  .page-slot-games h3 {
    font-size: 1.4em;
  }
  .page-slot-games .hero-banner {
    padding: 40px 15px;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-slot-games .features-grid, .page-slot-games .game-cards-grid, .page-slot-games .blog-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .page-slot-games .feature-item, .page-slot-games .game-card, .page-slot-games .blog-card {
    padding: 25px;
  }
  .page-slot-games .promo-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-slot-games .promo-icon {
    margin: 0 auto 15px;
  }
  .faq-question, .faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .page-slot-games h1 {
    font-size: 1.8em;
  }
  .page-slot-games h2 {
    font-size: 1.6em;
  }
  .page-slot-games h3 {
    font-size: 1.2em;
  }
  .page-slot-games .features-grid, .page-slot-games .game-cards-grid, .page-slot-games .blog-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games .hero-image {
    margin-bottom: 20px;
  }
  .page-slot-games .hero-content p {
    font-size: 1em;
  }
  .page-slot-games .cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-slot-games .step-list li {
    padding: 20px;
  }
  .page-slot-games .promo-list li {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
}