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

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

.page-slot-games-guide section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-slot-games-guide h1, .page-slot-games-guide h2, .page-slot-games-guide h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-slot-games-guide h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
}

.page-slot-games-guide h3 {
  font-size: 1.8em;
}

.page-slot-games-guide p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-slot-games-guide a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games-guide a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Hero Banner */
.page-slot-games-guide .hero-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3a475a 100%);
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games-guide .hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Overlay for better text readability */
  z-index: 1;
}

.page-slot-games-guide .hero-banner .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-slot-games-guide .hero-banner .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-slot-games-guide .hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games-guide .hero-banner h1 {
  color: var(--text-light);
  font-size: 3.5em;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-slot-games-guide .hero-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3em;
  margin-bottom: 35px;
}

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

.page-slot-games-guide .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-slot-games-guide .section-intro {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-slot-games-guide .section-intro p {
  text-align: justify;
}

/* Section Types */
.page-slot-games-guide .section-types {
  background-color: #f0f2f5;
}

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

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

.page-slot-games-guide .slot-type-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games-guide .slot-type-item img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games-guide .slot-type-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-slot-games-guide .slot-type-item p {
  font-size: 1em;
  color: #555;
  text-align: left;
}

/* Section Guide */
.page-slot-games-guide .section-guide {
  background-color: var(--bg-light);
}

.page-slot-games-guide .guide-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-guide .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--accent-color);
}

.page-slot-games-guide .step-item h3 {
  color: var(--primary-color);
  font-size: 1.7em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-slot-games-guide .step-item ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #555;
}

.page-slot-games-guide .step-item li {
  margin-bottom: 8px;
}

/* Section Tips */
.page-slot-games-guide .section-tips {
  background-color: #f0f2f5;
}

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

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

.page-slot-games-guide .tip-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slot-games-guide .tip-item img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games-guide .tip-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-slot-games-guide .tip-item p {
  font-size: 1em;
  color: #555;
  text-align: left;
}

/* Section Why K8vina */
.page-slot-games-guide .section-why-k8vina {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-slot-games-guide .section-why-k8vina h2 {
  color: var(--accent-color);
}

.page-slot-games-guide .section-why-k8vina p {
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.page-slot-games-guide .section-why-k8vina ul {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games-guide .section-why-k8vina li {
  background-color: #2c3e50;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-guide .section-why-k8vina li::before {
  content: '✓';
  color: var(--accent-color);
  font-size: 1.5em;
  margin-right: 15px;
  font-weight: bold;
  line-height: 1;
}

.page-slot-games-guide .section-why-k8vina li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1em;
}

.page-slot-games-guide .section-why-k8vina a {
  color: var(--accent-color);
}

.page-slot-games-guide .section-why-k8vina a:hover {
  color: var(--text-light);
}

/* FAQ Section */
.page-slot-games-guide .section-faq {
  background-color: var(--bg-light);
}

.page-slot-games-guide .faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-slot-games-guide .faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-slot-games-guide .faq-question:hover {
  background: #f5f5f5;
}

.page-slot-games-guide .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

.page-slot-games-guide .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-slot-games-guide .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-slot-games-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #444;
}

.page-slot-games-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.page-slot-games-guide .faq-item.active .faq-answer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-guide h1 {
    font-size: 3em;
  }
  .page-slot-games-guide h2 {
    font-size: 2em;
  }
  .page-slot-games-guide h3 {
    font-size: 1.6em;
  }
  .page-slot-games-guide .hero-banner h1 {
    font-size: 3em;
  }
  .page-slot-games-guide .hero-banner p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-guide section {
    padding: 40px 0;
  }
  .page-slot-games-guide h1 {
    font-size: 2.5em;
  }
  .page-slot-games-guide h2 {
    font-size: 1.8em;
  }
  .page-slot-games-guide h3 {
    font-size: 1.4em;
  }
  .page-slot-games-guide p {
    font-size: 1em;
  }
  .page-slot-games-guide .hero-banner h1 {
    font-size: 2.5em;
  }
  .page-slot-games-guide .hero-banner p {
    font-size: 1em;
  }
  .page-slot-games-guide .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-slot-games-guide .slot-type-grid, .page-slot-games-guide .tip-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games-guide .slot-type-item, .page-slot-games-guide .tip-item {
    padding: 20px;
  }
  .page-slot-games-guide .step-item {
    padding: 20px;
  }
  .page-slot-games-guide .faq-question {
    padding: 15px 20px;
  }
  .page-slot-games-guide .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games-guide .faq-toggle {
    font-size: 1.5em;
  }
  .page-slot-games-guide .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-slot-games-guide .section-why-k8vina li {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-guide .container {
    padding: 0 15px;
  }
  .page-slot-games-guide h1 {
    font-size: 2em;
  }
  .page-slot-games-guide .hero-banner h1 {
    font-size: 2em;
  }
  .page-slot-games-guide .cta-button {
    width: 100%;
    max-width: 250px;
  }
  .page-slot-games-guide .faq-question h3 {
    font-size: 1em;
  }
}