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

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  padding: 20px; /* Responsive padding */
  box-sizing: border-box;
  overflow: hidden;
}

.page-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #F2FFF6; /* Main text color for dark background */
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-slot-games__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
}

.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 {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Main text color */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-slot-games__btn-secondary:hover {
  background: #1E3A2A; /* Divider color */
  transform: translateY(-2px);
}

.page-slot-games__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

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

.page-slot-games__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #11A84E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-slot-games__highlight {
  color: #11A84E;
  font-weight: bold;
}

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

.page-slot-games__list,
.page-slot-games__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-slot-games__ordered-list {
  list-style-type: decimal;
}

.page-slot-games__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-slot-games__dark-section {
  background-color: #08160F; /* Background color */
  color: #F2FFF6; /* Main text color */
}

.page-slot-games__dark-section .page-slot-games__section-title {
  color: #57E38D; /* Glow color for titles on dark background */
}

.page-slot-games__dark-section .page-slot-games__text-block,
.page-slot-games__dark-section .page-slot-games__list-item {
  color: #A7D9B8; /* Secondary text color */
}

.page-slot-games__dark-section .page-slot-games__highlight {
  color: #F2C14E; /* Gold color for highlight on dark background */
}

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

.page-slot-games__provider-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-slot-games__provider-name {
  font-size: 1.5em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 10px;
}

.page-slot-games__provider-description {
  color: #A7D9B8; /* Secondary text color */
  font-size: 0.95em;
}

.page-slot-games__light-bg {
  background-color: #f8f8f8;
  color: #333333;
}

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

.page-slot-games__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-slot-games__promo-title {
  font-size: 1.4em;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-slot-games__promo-description {
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-slot-games__faq-list {
  margin-top: 30px;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  background-color: #13994A;
}

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

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-slot-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Secondary text color */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games__faq-item details > summary {
  list-style: none;
}

.page-slot-games__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-slot-games__conclusion .page-slot-games__cta-buttons {
  margin-top: 40px;
}

.page-slot-games a {
  color: #11A84E;
  text-decoration: none;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games__hero-section {
    min-height: 400px;
    padding: 10px;
  }

  .page-slot-games__main-title {
    font-size: 2.2em;
  }

  .page-slot-games__hero-description {
    font-size: 1em;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 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 {
    padding: 40px 10px;
  }

  .page-slot-games__container {
    padding: 0 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-slot-games__text-block {
    font-size: 1em;
  }

  .page-slot-games__list,
  .page-slot-games__ordered-list {
    margin-left: 20px;
  }

  .page-slot-games__list-item {
    font-size: 0.95em;
  }

  .page-slot-games__provider-grid,
  .page-slot-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__provider-card,
  .page-slot-games__promo-card {
    padding: 20px;
  }

  .page-slot-games__provider-name,
  .page-slot-games__promo-title {
    font-size: 1.3em;
  }

  .page-slot-games__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-slot-games__faq-answer {
    padding: 10px 20px 15px;
    font-size: 1em;
  }

  /* Ensure all images are responsive */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images */
  .page-slot-games__hero-section,
  .page-slot-games__section,
  .page-slot-games__container,
  .page-slot-games__provider-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__provider-card,
  .page-slot-games__promo-card,
  .page-slot-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video specific mobile styles, if any video was used */
  .page-slot-games video,
  .page-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
}