.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom */
  text-align: center;
  overflow: hidden;
  background-color: #08160F; /* Ensure consistent background */
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px; /* Space between image and content */
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-slot-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-slot-games__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-slot-games__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Brighter green from gradient */
  border: 2px solid #2AD16F;
}

.page-slot-games__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-slot-games__content-area,
.page-slot-games__popular-games,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green for light sections */
  border-radius: 10px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.page-slot-games__features-section,
.page-slot-games__strategies-section,
.page-slot-games__how-to-play,
.page-slot-games__call-to-action {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background for dark sections */
  border-radius: 10px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.page-slot-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-slot-games__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: bold;
  color: #2AD16F; /* Brighter green */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-slot-games__text-block {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-slot-games__text-block strong {
  color: #F2FFF6; /* Highlight strong text */
}

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

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.page-slot-games__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-slot-games__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-slot-games__game-list,
.page-slot-games__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-slot-games__game-card,
.page-slot-games__promotion-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.page-slot-games__game-image,
.page-slot-games__promotion-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

.page-slot-games__game-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-slot-games__game-description {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-question:hover {
  background-color: #1E3A2A; /* Divider for hover */
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 10px;
  color: #2AD16F;
}

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 10px 15px 40px;
  }

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

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

  .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;
    margin: 0 auto; /* Center buttons */
  }

  .page-slot-games__content-area,
  .page-slot-games__popular-games,
  .page-slot-games__promotions-section,
  .page-slot-games__faq-section,
  .page-slot-games__features-section,
  .page-slot-games__strategies-section,
  .page-slot-games__how-to-play,
  .page-slot-games__call-to-action {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

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

  .page-slot-games__sub-title {
    font-size: 1.2em;
    margin-top: 30px;
  }

  .page-slot-games__feature-grid,
  .page-slot-games__strategy-grid,
  .page-slot-games__steps-grid,
  .page-slot-games__game-list,
  .page-slot-games__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile image and container responsiveness */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__hero-image-wrapper,
  .page-slot-games__game-card,
  .page-slot-games__promotion-card,
  .page-slot-games__feature-card,
  .page-slot-games__strategy-item,
  .page-slot-games__step-item,
  .page-slot-games__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-slot-games__hero-content {
    padding: 0 0px; /* Remove side padding on hero content for mobile */
  }

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

  .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }
}