.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #FFB04D; /* Glow */
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-slot-games__dark-section {
  background-color: #0D0E12; /* Background */
  color: #FFF3E6; /* Text Main */
  padding: 60px 0;
}

.page-slot-games__light-bg {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
  padding: 60px 0;
}

.page-slot-games__card {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games__card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
}

.page-slot-games__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFB04D; /* Glow */
}

.page-slot-games__card-text {
  font-size: 15px;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  max-width: 100%;
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff; /* White text for contrast */
  border: none;
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A; /* Primary color */
  border: 2px solid #FF8C1A;
}

.page-slot-games__btn-secondary:hover {
  background: #FF8C1A;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.page-slot-games__btn-link {
  background: none;
  border: none;
  color: #FFB04D; /* Glow */
  padding: 8px 15px;
  font-size: 14px;
  text-align: center;
}

.page-slot-games__btn-link:hover {
  text-decoration: underline;
  color: #FFA53A;
}

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

.page-slot-games__hero-image {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-slot-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to bring content slightly over image bottom */
  position: relative;
  z-index: 2;
  background: rgba(13, 14, 18, 0.85); /* Slightly transparent background */
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games__main-title {
  font-size: clamp(28px, 4vw, 56px); /* Responsive H1 */
  margin-bottom: 20px;
  color: #FFB04D;
  line-height: 1.1;
}

.page-slot-games__hero-description {
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Introduction Section */
.page-slot-games__introduction-section .page-slot-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-slot-games__introduction-section .page-slot-games__text-block {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-slot-games__introduction-section .page-slot-games__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-slot-games__introduction-section .page-slot-games__image-block img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-slot-games__introduction-section p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #FFF3E6;
}

.page-slot-games__introduction-section strong {
  color: #FFB04D;
}

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

.page-slot-games__game-card img {
  height: 200px;
}

.page-slot-games__button-group {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__step-card {
  text-align: left;
}

.page-slot-games__step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FF8C1A;
}

.page-slot-games__step-text {
  font-size: 16px;
  color: #FFF3E6;
  margin-bottom: 20px;
}

/* Strategy Section */
.page-slot-games__strategy-section .page-slot-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-slot-games__strategy-section .page-slot-games__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-slot-games__strategy-section .page-slot-games__image-block img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-slot-games__strategy-section .page-slot-games__text-block {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-slot-games__strategy-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-slot-games__strategy-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-slot-games__strategy-list strong {
  color: #FFB04D;
}

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

.page-slot-games__promo-card img {
  height: 200px;
}

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

.page-slot-games__feature-item {
  text-align: left;
}

.page-slot-games__feature-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FF8C1A;
}

.page-slot-games__feature-text {
  font-size: 16px;
  color: #FFF3E6;
}

/* FAQ Section */
details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFB04D; /* Glow */
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}
.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6;
}
.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 140, 26, 0.05); /* Slightly lighter background */
  border-radius: 0 0 5px 5px;
  color: #FFF3E6;
  font-size: 15px;
}

/* Final CTA Section */
.page-slot-games__cta-final-section .page-slot-games__section-title {
  color: #FFB04D;
}

.page-slot-games__cta-final-section .page-slot-games__section-description {
  color: #FFF3E6;
}

/* Footer Info */
.page-slot-games__footer-info {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #FFF3E6;
  border-top: 1px solid #A84F0C; /* Border */
  margin-top: 40px;
}

.page-slot-games__copyright {
  margin: 0;
  color: #FFF3E6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__container {
    padding: 20px 30px;
  }
  .page-slot-games__section-title {
    font-size: 32px;
  }
  .page-slot-games__hero-content {
    margin-top: -80px;
    padding: 30px;
  }
  .page-slot-games__main-title {
    font-size: clamp(26px, 3.5vw, 48px);
  }
  .page-slot-games__hero-description {
    font-size: clamp(15px, 1.7vw, 18px);
  }
  .page-slot-games__game-grid,
  .page-slot-games__steps-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 849px) {
  .page-slot-games__hero-image img {
    object-fit: contain !important; /* Prevent cropping on smaller screens */
    aspect-ratio: unset !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-slot-games__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-slot-games__dark-section, .page-slot-games__light-bg {
    padding: 40px 0;
  }

  /* HERO Section */
  .page-slot-games__hero-section {
    padding-top: 10px; /* Consistent small top padding */
  }
  .page-slot-games__hero-image {
    max-height: 400px;
  }
  .page-slot-games__hero-content {
    margin-top: -60px;
    padding: 20px;
    border-radius: 8px;
  }
  .page-slot-games__main-title {
    font-size: clamp(24px, 8vw, 38px);
    margin-bottom: 15px;
  }
  .page-slot-games__hero-description {
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: 25px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* General Buttons */
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-link,
  .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: 12px 15px;
  }
  .page-slot-games__button-group {
    flex-direction: column; /* Stack button groups vertically */
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image blocks and general images */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-slot-games__introduction-section .page-slot-games__content-wrapper,
  .page-slot-games__strategy-section .page-slot-games__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-slot-games__introduction-section .page-slot-games__text-block,
  .page-slot-games__introduction-section .page-slot-games__image-block,
  .page-slot-games__strategy-section .page-slot-games__text-block,
  .page-slot-games__strategy-section .page-slot-games__image-block {
    min-width: unset;
    width: 100%;
  }

  /* Game Grid */
  .page-slot-games__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__game-card img {
    
  }

  /* How to Play Steps */
  .page-slot-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__step-title {
    font-size: 20px;
  }

  /* Promotions Grid */
  .page-slot-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__promo-card img {
    
  }

  /* Why Choose Section */
  .page-slot-games__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__feature-title {
    font-size: 20px;
  }

  /* FAQ Section */
  details.page-slot-games__faq-item summary.page-slot-games__faq-question { padding: 15px; }
  .page-slot-games__faq-qtext { font-size: 15px; }
  .page-slot-games__faq-toggle { font-size: 20px; width: 24px; }
  details.page-slot-games__faq-item .page-slot-games__faq-answer { padding: 0 15px 15px; }

  /* Footer Info */
  .page-slot-games__footer-info {
    padding: 20px 0;
  }
}