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

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

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

.page-slot-games__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2C14E; /* Gold color for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-slot-games__section-intro {
  font-size: 18px;
  color: #A7D9B8; /* Secondary text color */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow effect */
}

.page-slot-games__card-title {
  font-size: 24px;
  color: #57E38D; /* Glow color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games__dark-section {
  background-color: #0A4B2C; /* Deep Green background */
  color: #F2FFF6;
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 8px #57E38D;
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow color */
  border: 2px solid #57E38D;
}

.page-slot-games__btn-secondary:hover {
  background-color: #57E38D;
  color: #11271B;
}

.page-slot-games__btn-tertiary {
  background-color: #2E7A4E;
  color: #F2FFF6;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 15px;
}

.page-slot-games__btn-tertiary:hover {
  background-color: #57E38D;
  color: #11271B;
}

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

/* 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, small top padding for section */
  overflow: hidden;
  background-color: #08160F;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-slot-games__hero-title {
  font-size: clamp(36px, 5vw, 60px);
  color: #F2C14E; /* Gold color */
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

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

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

.page-slot-games__feature-card p {
  color: #A7D9B8;
}

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

.page-slot-games__step-item {
  text-align: center;
}

.page-slot-games__step-icon {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__step-title {
  color: #57E38D;
  font-size: 22px;
  margin-bottom: 10px;
}

.page-slot-games__step-item p {
  color: #A7D9B8;
}

/* Game Types Section */
.page-slot-games__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-slot-games__game-type-card p {
  color: #A7D9B8;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  background-color: #0A4B2C;
}

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

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

.page-slot-games__promo-card p {
  color: #A7D9B8;
}

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

.page-slot-games__tip-item p {
  color: #A7D9B8;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-slot-games__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-slot-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #57E38D;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

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

.page-slot-games__faq-item summary:hover {
  background-color: #1E3A2A;
}

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 20px;
}

.page-slot-games__faq-answer {
  padding: 0 30px 20px;
  color: #A7D9B8;
  font-size: 16px;
}

.page-slot-games__faq-answer p {
  margin-top: 10px;
  color: #A7D9B8;
}

/* Contact CTA Section */
.page-slot-games__contact-cta {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C;
}

.page-slot-games__cta-content {
  max-width: 800px;
}

.page-slot-games__cta-title {
  font-size: clamp(30px, 4vw, 42px);
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-slot-games__cta-description {
  font-size: 20px;
  color: #A7D9B8;
  margin-bottom: 40px;
}

/* Global image responsiveness */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-slot-games__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-slot-games__section-title {
    font-size: clamp(24px, 7vw, 36px) !important;
  }

  .page-slot-games__section-intro {
    font-size: 16px !important;
    margin-bottom: 30px !important;
  }

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

  .page-slot-games__hero-title {
    font-size: clamp(30px, 8vw, 48px) !important;
  }

  .page-slot-games__hero-description {
    font-size: 18px !important;
  }

  .page-slot-games__hero-cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-tertiary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .page-slot-games__feature-grid,
  .page-slot-games__steps,
  .page-slot-games__game-type-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__tips-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-slot-games__card {
    padding: 20px !important;
  }

  .page-slot-games__card-title {
    font-size: 20px !important;
  }

  .page-slot-games__step-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 28px !important;
  }

  .page-slot-games__step-title {
    font-size: 20px !important;
  }

  .page-slot-games__game-type-image,
  .page-slot-games__promo-image {
    height: auto !important;
  }

  .page-slot-games__faq-item summary {
    padding: 15px 20px !important;
    font-size: 18px !important;
  }

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

  .page-slot-games__cta-title {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .page-slot-games__cta-description {
    font-size: 18px !important;
  }

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

  .page-slot-games__video-container,
  .page-slot-games__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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