.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background */
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* --- Hero Section --- */
.page-slot-games__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 80px;
  background-color: #0A1931;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-slot-games__hero-section .page-slot-games__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-slot-games__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-slot-games__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-slot-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* --- General Section Styling --- */
.page-slot-games__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #0A1931;
}

.page-slot-games__section-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #555555;
}

.page-slot-games__dark-bg .page-slot-games__section-title,
.page-slot-games__dark-bg .page-slot-games__section-description {
  color: #ffffff;
}

.page-slot-games__dark-bg .page-slot-games__section-description {
  color: #e0e0e0;
}

.page-slot-games__sub-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-games__dark-bg .page-slot-games__sub-title {
  color: #FFD700;
}

.page-slot-games__paragraph,
.page-slot-games__list-item {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444444;
}

.page-slot-games__dark-bg .page-slot-games__paragraph,
.page-slot-games__dark-bg .page-slot-games__list-item {
  color: #f0f0f0;
}

.page-slot-games__list {
  list-style: disc inside;
  padding-left: 20px;
}

.page-slot-games__list li {
  margin-bottom: 10px;
}

/* --- Video Section --- */
.page-slot-games__video-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-slot-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-slot-games__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}

.page-slot-games__video-cta {
  margin-top: 20px;
}

/* --- Overview Section --- */
.page-slot-games__overview-section {
  padding: 80px 0;
}

.page-slot-games__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-slot-games__image-block .page-slot-games__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

/* --- Game Types Section --- */
.page-slot-games__game-types-section {
  padding: 80px 0;
  background-color: #0A1931;
  color: #ffffff;
}

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

.page-slot-games__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-slot-games__card:hover {
  transform: translateY(-10px);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-slot-games__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

/* --- How to Play Section --- */
.page-slot-games__how-to-play-section {
  padding: 80px 0;
}

/* --- Advantages Section --- */
.page-slot-games__advantages-section {
  padding: 80px 0;
  background-color: #0A1931;
  color: #ffffff;
}

.page-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-slot-games__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-slot-games__feature-icon {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  display: block;
}

.page-slot-games__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games__feature-text {
  font-size: 1.05em;
  color: #e0e0e0;
  flex-grow: 1;
}

/* --- Promotions Section --- */
.page-slot-games__promotions-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-slot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-slot-games__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-10px);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__promo-card .page-slot-games__promo-title {
  font-size: 1.5em;
  color: #0A1931;
  margin: 20px 20px 10px 20px;
  flex-grow: 1;
}

.page-slot-games__promo-card .page-slot-games__promo-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  padding: 0 20px 20px 20px;
}

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

/* --- Guide Section --- */
.page-slot-games__guide-section {
  padding: 80px 0;
  background-color: #0A1931;
  color: #ffffff;
}

.page-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-slot-games__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__step-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-slot-games__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games__step-text {
  font-size: 1.05em;
  color: #e0e0e0;
}

/* --- FAQ Section --- */
.page-slot-games__faq-section {
  padding: 80px 0;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A1931;
  cursor: pointer;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.page-slot-games__faq-question:hover {
  background-color: #eeeeee;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #444444;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

/* --- Conclusion Section --- */
.page-slot-games__conclusion-section {
  padding: 80px 0;
  background-color: #0A1931;
  color: #ffffff;
  text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: 3em;
  }
  .page-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games__section-title {
    font-size: 2.2em;
  }
  .page-slot-games__section-description {
    font-size: 1em;
  }
  .page-slot-games__sub-title {
    font-size: 1.6em;
  }
  .page-slot-games__content-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }
  .page-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-slot-games__section-description {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .page-slot-games__sub-title {
    font-size: 1.4em;
  }

  .page-slot-games__video-section {
    padding: 60px 0;
  }
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__video-cta {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    margin: 20px auto 0 auto !important;
    display: block !important;
    box-sizing: border-box !important;
    font-size: 1em !important;
  }

  .page-slot-games__overview-section,
  .page-slot-games__game-types-section,
  .page-slot-games__how-to-play-section,
  .page-slot-games__advantages-section,
  .page-slot-games__promotions-section,
  .page-slot-games__guide-section,
  .page-slot-games__faq-section,
  .page-slot-games__conclusion-section {
    padding: 60px 0;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-slot-games__image-block {
    order: -1; /* Image first on mobile */
  }
  .page-slot-games__image-block .page-slot-games__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__card-grid,
  .page-slot-games__features-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-slot-games__card,
  .page-slot-games__feature-item,
  .page-slot-games__promo-card,
  .page-slot-games__step-item {
    padding: 20px;
  }
  .page-slot-games__card-image,
  .page-slot-games__promo-image,
  .page-slot-games__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__feature-icon {
    width: 200px !important;
    height: 200px !important;
  }

  .page-slot-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-slot-games__faq-answer {
    padding: 0 15px;
  }
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px;
  }

  .page-slot-games__center-cta .page-slot-games__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    margin: 0 auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: 1.8em;
  }
  .page-slot-games__section-title {
    font-size: 1.5em;
  }
  .page-slot-games__hero-section .page-slot-games__container {
    gap: 20px;
  }
  .page-slot-games__hero-image-wrapper {
    margin-top: 20px;
  }
  .page-slot-games__video-section .page-slot-games__section-description {
    margin-bottom: 20px;
  }
  .page-slot-games__video-wrapper {
    margin-bottom: 20px;
  }
  .page-slot-games__hero-description {
    margin-bottom: 25px;
  }
}