/* style/index-slots.css */
.page-index-slots {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #1a1a1a; /* Dark background */
}

.page-index-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-slots__highlight {
  color: #FFD700; /* Gold highlight for k8vn */
}

.page-index-slots__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-index-slots__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.page-index-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-index-slots__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1a1a1a; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-index-slots__btn--primary:hover {
  background-color: #e6c200;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-slots__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-index-slots__btn--secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.2);
}

.page-index-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
}

/* Hero Section */
.page-index-slots__hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #8B0000 100%); /* Dark to Burgundy Red gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-index-slots__hero-section .page-index-slots__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-slots__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-slots__hero-title {
  font-size: 3.8em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.page-index-slots__hero-description {
  font-size: 1.3em;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-index-slots__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-slots__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-slots__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.page-index-slots__features-section {
  padding: 80px 0;
  background-color: #101010;
}

.page-index-slots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-index-slots__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
}

.page-index-slots__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-index-slots__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-slots__feature-description {
  font-size: 1em;
  color: #bbb;
  line-height: 1.6;
}

/* Gameplay Guide Section */
.page-index-slots__gameplay-guide-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-index-slots__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-index-slots__step-item {
  background-color: #222;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

.page-index-slots__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B0000; /* Burgundy Red */
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #FFD700;
}

.page-index-slots__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-slots__step-description {
  font-size: 1em;
  color: #bbb;
  line-height: 1.6;
}

.page-index-slots__step-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-slots__step-description a:hover {
  color: #e6c200;
}

.page-index-slots__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Game Showcase Section */
.page-index-slots__game-showcase-section {
  padding: 80px 0;
  background-color: #101010;
}

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

.page-index-slots__game-card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-index-slots__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
}

.page-index-slots__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-slots__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 15px 10px 15px;
}

.page-index-slots__game-description {
  font-size: 1em;
  color: #bbb;
  padding: 0 15px 20px 15px;
  line-height: 1.6;
}

.page-index-slots__game-card .page-index-slots__btn {
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index-slots__promotions-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-index-slots__promo-card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-index-slots__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
}

.page-index-slots__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-slots__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 15px 10px 15px;
}

.page-index-slots__promo-description {
  font-size: 1em;
  color: #bbb;
  padding: 0 15px 20px 15px;
  line-height: 1.6;
}

.page-index-slots__promo-card .page-index-slots__btn {
  margin-bottom: 20px;
}

/* App Download Section */
.page-index-slots__app-download-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #8B0000 0%, #3a0000 100%); /* Burgundy Red gradient */
  color: #fff;
}

.page-index-slots__app-download-section .page-index-slots__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-slots__app-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-slots__app-download-section .page-index-slots__section-title {
  color: #fff;
  text-align: left;
  padding-top: 0;
  text-shadow: none;
  margin-bottom: 20px;
}

.page-index-slots__app-description {
  font-size: 1.15em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eee;
}

.page-index-slots__app-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-slots__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-slots__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsible Gaming Section */
.page-index-slots__responsible-gaming-section {
  padding: 80px 0;
  background-color: #101010;
}

.page-index-slots__responsibility-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #ccc;
}

.page-index-slots__responsibility-list li {
  background-color: #222;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-index-slots__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-index-slots__faq-item {
  background-color: #222;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-slots__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-slots__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-slots__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-slots__faq-answer {
  font-size: 1em;
  color: #bbb;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 0 0 0;
}

.page-index-slots__faq-answer.open {
  max-height: 300px; /* Adjust as needed */
  padding: 10px 0 0 0;
}

.page-index-slots__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-slots__faq-answer a:hover {
  color: #e6c200;
}

/* Final CTA Section */
.page-index-slots__cta-final-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Burgundy Red to Gold gradient */
  text-align: center;
  color: #fff;
}

.page-index-slots__cta-final-content {
  max-width: 900px;
}

.page-index-slots__cta-final-section .page-index-slots__section-title {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  padding-top: 0;
}

.page-index-slots__cta-final-section .page-index-slots__intro-text {
  color: #fff;
  margin-bottom: 40px;
}

.page-index-slots__cta-final-section .page-index-slots__btn--primary {
  background-color: #1a1a1a; /* Dark button */
  color: #FFD700; /* Gold text */
  border-color: #1a1a1a;
}

.page-index-slots__cta-final-section .page-index-slots__btn--primary:hover {
  background-color: #000;
  color: #e6c200;
  border-color: #000;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-slots__hero-section .page-index-slots__container {
    flex-direction: column;
    text-align: center;
  }

  .page-index-slots__hero-content,
  .page-index-slots__hero-image-wrapper {
    max-width: 100%;
  }

  .page-index-slots__hero-title {
    font-size: 3em;
  }

  .page-index-slots__app-download-section .page-index-slots__container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-index-slots__app-download-section .page-index-slots__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-index-slots__section-title {
    font-size: 2.2em;
  }

  .page-index-slots__hero-title {
    font-size: 2.5em;
  }

  .page-index-slots__hero-description {
    font-size: 1.1em;
  }

  .page-index-slots__hero-actions,
  .page-index-slots__app-actions {
    justify-content: center;
  }

  .page-index-slots__guide-steps,
  .page-index-slots__game-grid,
  .page-index-slots__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-slots__section-title {
    font-size: 1.8em;
  }

  .page-index-slots__hero-title {
    font-size: 2em;
  }

  .page-index-slots__hero-actions .page-index-slots__btn,
  .page-index-slots__app-actions .page-index-slots__btn {
    width: 100%;
    padding: 12px 20px;
  }

  .page-index-slots__feature-title,
  .page-index-slots__step-title,
  .page-index-slots__game-title,
  .page-index-slots__promo-title,
  .page-index-slots__faq-question {
    font-size: 1.3em;
  }
}