/* style/slot-games.css */

/* General Styling & Body Background Contrast */
.page-slot-games {
  background-color: #08160F; /* Custom Background color */
  color: #F2FFF6; /* Text Main for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-slot-games__dark-bg {
  background-color: #08160F; /* Custom Background color */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__light-bg {
  background-color: #11271B; /* Custom Card BG color for light sections */
  color: #F2FFF6; /* Text Main */
}

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

.page-slot-games__container--center {
  text-align: center;
}

.page-slot-games__section {
  padding: 60px 0;
  position: relative;
}

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-slot-games__light-bg .page-slot-games__section-title {
  color: #F2FFF6; /* Text Main */
}

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

.page-slot-games__text-block--center {
  text-align: center;
}

.page-slot-games a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: #2AD16F;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is decorative */
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of hero image */
  overflow: hidden;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow */
  background: rgba(8, 22, 15, 0.8); /* Background color for readability */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-slot-games__main-title {
  font-size: clamp(32px, 5vw, 64px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.page-slot-games__hero-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
}

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

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-slot-games__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  border-color: #2AD16F;
  color: #2AD16F;
}

.page-slot-games__btn-small {
  padding: 10px 20px;
  font-size: 16px;
  min-width: 120px;
}

/* Intro Section */
.page-slot-games__intro-section {
  padding-top: 40px;
}

/* Game Types Section */
.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-slot-games__list-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__list-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Benefits Section */
.page-slot-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.page-slot-games__card-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Guide Section */
.page-slot-games__numbered-list {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
  margin: 0;
}

.page-slot-games__numbered-list .page-slot-games__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px; /* Space for number */
}

.page-slot-games__numbered-list .page-slot-games__list-item::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 25px;
  top: 25px;
  width: 35px;
  height: 35px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

/* Strategy Section */
.page-slot-games__list--two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Promotions Section */
.page-slot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-slot-games__promo-image {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.page-slot-games__promo-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 700;
}

.page-slot-games__promo-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
}

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

.page-slot-games__faq-item summary {
  list-style: none;
  display: block;
  cursor: pointer;
}

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

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider */
  border-bottom: 1px solid transparent; /* No border for closed state */
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

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

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

/* Final CTA Section */
.page-slot-games__final-cta-section {
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }
}

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

  .page-slot-games__section {
    padding: 40px 0;
  }

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

  .page-slot-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-slot-games__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .page-slot-games__hero-description {
    font-size: 16px;
  }

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

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-slot-games__container,
  .page-slot-games__hero-image-wrapper,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper,
  .page-slot-games__promo-grid,
  .page-slot-games__grid,
  .page-slot-games__faq-list,
  .page-slot-games__intro-section,
  .page-slot-games__game-types-section,
  .page-slot-games__benefits-section,
  .page-slot-games__guide-section,
  .page-slot-games__strategy-section,
  .page-slot-games__promotions-section,
  .page-slot-games__faq-section,
  .page-slot-games__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-games img,
  .page-slot-games video,
  .page-slot-games__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__numbered-list .page-slot-games__list-item {
    padding-left: 60px;
  }

  .page-slot-games__numbered-list .page-slot-games__list-item::before {
    left: 15px;
    top: 20px;
  }

  .page-slot-games__list--two-cols {
    grid-template-columns: 1fr;
  }

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

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

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