.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Main text color for dark backgrounds */
  background-color: #08160F; /* Background color */
}

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

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  min-height: 500px;
}

.page-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

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

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

.page-slot-games__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  line-height: 1.6;
}

.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: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

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

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

.page-slot-games__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Green text for secondary button */
  border: 2px solid #2AD16F;
}

.page-slot-games__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F; /* Dark background color for hover */
  transform: translateY(-2px);
}

.page-slot-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games__dark-section {
  background-color: #11271B; /* Card BG color */
  padding: 60px 20px;
}

.page-slot-games__light-bg {
  background-color: #0A4B2C; /* Deep Green for light sections */
  padding: 60px 20px;
  color: #F2FFF6;
}

.page-slot-games__text-main {
  color: #F2FFF6;
}

.page-slot-games__text-secondary {
  color: #A7D9B8;
}

.page-slot-games__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-slot-games__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-slot-games__text-block {
  flex: 1;
  font-size: 1.05em;
  line-height: 1.7;
  color: #A7D9B8;
}

.page-slot-games__text-block p {
  margin-bottom: 15px;
}

.page-slot-games__image-right,
.page-slot-games__image-left {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-slot-games__card {
  background-color: #08160F; /* Background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #A7D9B8;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-slot-games__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__card-link {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slot-games__card-link:hover {
  color: #F2C14E; /* Gold color on hover */
}

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

.page-slot-games__feature-item {
  background-color: #08160F; /* Background color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #A7D9B8;
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

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

.page-slot-games__feature-text {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-slot-games__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__steps-list li {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
  color: #A7D9B8;
}

.page-slot-games__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2AD16F; /* Button gradient start color */
  color: #08160F; /* Background color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  font-weight: bold;
}

.page-slot-games__step-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 5px;
  font-weight: bold;
}

.page-slot-games__step-text {
  font-size: 1em;
  line-height: 1.6;
}

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

.page-slot-games__description-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.05em;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-slot-games__final-cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games__final-cta-section .page-slot-games__section-title {
  color: #F2C14E;
}

.page-slot-games__final-cta-section .page-slot-games__description-text {
  margin-bottom: 40px;
  color: #F2FFF6;
}

.page-slot-games__faq-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background color */
}

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

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG color */
  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: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Main text color */
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-slot-games__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  background-color: #0A4B2C; /* Deep Green when open */
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .page-slot-games__hero-content {
    padding: 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

  .page-slot-games__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-slot-games__image-right,
  .page-slot-games__image-left {
    max-width: 100%;
  }

  .page-slot-games__grid-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-slot-games__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .page-slot-games__steps-list li {
    padding-left: 60px;
  }

  .page-slot-games__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    left: 15px;
  }
}

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

  .page-slot-games__hero-section,
  .page-slot-games__dark-section,
  .page-slot-games__light-bg,
  .page-slot-games__faq-section,
  .page-slot-games__final-cta-section {
    padding: 40px 15px;
  }

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

  .page-slot-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-slot-games__section-title {
    font-size: clamp(1.6em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__content-wrapper,
  .page-slot-games__features-grid,
  .page-slot-games__steps-list li,
  .page-slot-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-slot-games__card-image {
    height: 180px;
  }

  .page-slot-games__feature-icon {
    width: 80px;
    height: 80px;
  }

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

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

@media (max-width: 480px) {
  .page-slot-games__hero-content {
    padding: 10px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }

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

  .page-slot-games__cta-buttons {
    gap: 10px;
  }

  .page-slot-games__card-image {
    height: 150px;
  }
}