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

.page-slot-games a {
  color: #2AD16F; /* A lighter green for links */
  text-decoration: none;
}

.page-slot-games a:hover {
  text-decoration: underline;
}

/* Typography */
.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3 {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 1em;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.page-slot-games h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
}

.page-slot-games h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-slot-games p {
  margin-bottom: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__text-gold {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

/* Sections & Containers */
.page-slot-games__section {
  padding: 60px 20px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

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

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

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* No filter property allowed */
}

.page-slot-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__hero-description {
  font-size: 1.2rem;
  margin-bottom: 2em;
  color: #F2FFF6; /* Main text for hero description */
}

/* CTA Buttons */
.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button--small {
  padding: 12px 25px;
  font-size: 0.9rem;
}

.page-slot-games__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.page-slot-games__cta-button--center {
  display: block;
  margin: 30px auto 0 auto;
  text-align: center;
}

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

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-slot-games__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  /* No filter property allowed */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-slot-games__card-title {
  color: #F2FFF6; /* Text Main */
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-slot-games__card--promo {
  text-align: left;
}

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

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

.page-slot-games__feature-title {
  color: #F2FFF6; /* Text Main */
  margin-top: 0;
}

.page-slot-games__feature-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__feature-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  /* No filter property allowed */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
  margin-top: 20px;
}

/* Guide List */
.page-slot-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games__guide-list li {
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  font-size: 1.05rem;
  line-height: 1.8;
  border-left: 5px solid #2AD16F;
}

.page-slot-games__guide-list li strong {
  color: #F2C14E; /* Gold */
}

/* Strategy List */
.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games__strategy-list li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.7;
  border-left: 5px solid #2E7A4E; /* Border */
}

.page-slot-games__strategy-list li strong {
  color: #F2FFF6; /* Text Main */
}

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

/* 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-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  list-style: none; /* For details summary */
}

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

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

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

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E; /* Border */
  font-size: 1rem;
}

.page-slot-games__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__faq-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 40px;
  /* No filter property allowed */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

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

  .page-slot-games__section {
    padding: 30px 15px;
  }

  .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__hero-section {
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-slot-games__hero-content {
    padding: 20px 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-slot-games__hero-description {
    font-size: 1rem;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-slot-games__card,
  .page-slot-games__feature-item {
    padding: 20px;
  }

  .page-slot-games__card-image,
  .page-slot-games__feature-image,
  .page-slot-games__faq-image,
  .page-slot-games__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
    box-sizing: border-box !important;
  }

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

  /* Buttons responsive */
  .page-slot-games__cta-button {
    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-button--center {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Contrast Fixes (as per requirements for dark background) */
.page-slot-games__text-block,
.page-slot-games p,
.page-slot-games li {
  color: #A7D9B8; /* Text Secondary - good contrast on dark background */
}

.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3,
.page-slot-games__card-title,
.page-slot-games__feature-title {
  color: #F2FFF6; /* Text Main - good contrast on dark background */
}

.page-slot-games__cta-button {
  color: #F2FFF6; /* Button text always white */
}

.page-slot-games a {
  color: #2AD16F; /* Lighter green for links */
}

/* Ensure no filter on images */
.page-slot-games img {
  filter: none !important;
}