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

.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__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;
}

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

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly darken image for text readability */
  display: block;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-slot-games__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

.page-slot-games__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F; /* Background */
}

.page-slot-games__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
}

.page-slot-games__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-slot-games__overview-section .page-slot-games__text-block {
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-slot-games__game-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__game-card .page-slot-games__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 20px 5px;
  color: #F2C14E; /* Gold */
}

.page-slot-games__game-card .page-slot-games__card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px;
}

.page-slot-games__guide-section .page-slot-games__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__guide-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #2AD16F;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__guide-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-slot-games__guide-item .page-slot-games__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__btn-small {
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-top: 15px;
}

.page-slot-games__terms-list {
  list-style: disc;
  padding-left: 30px;
  margin-top: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__terms-list li {
  margin-bottom: 10px;
}

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

.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-slot-games__strategy-list .page-slot-games__guide-subtitle {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__strategy-list .page-slot-games__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__promotions-section .page-slot-games__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.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-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__promo-card .page-slot-games__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-slot-games__promo-card .page-slot-games__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 20px 5px;
  color: #F2C14E; /* Gold */
}

.page-slot-games__promo-card .page-slot-games__card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px;
}

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

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

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

.page-slot-games__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #57E38D; /* Glow */
}

.page-slot-games__feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

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

.page-slot-games__faq-section .page-slot-games__text-block {
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__faq-list {
  margin-top: 40px;
}

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

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-slot-games__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green */
}

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  content: '−';
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-slot-games__hero-description {
    font-size: 1.1rem;
  }
  .page-slot-games__section-title {
    font-size: 2rem;
  }
  .page-slot-games__guide-subtitle {
    font-size: 1.6rem;
  }
  .page-slot-games__feature-title {
    font-size: 1.4rem;
  }
  .page-slot-games__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-slot-games__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-slot-games__text-block {
    font-size: 1rem;
  }
  .page-slot-games__game-grid,
  .page-slot-games__strategy-list,
  .page-slot-games__promo-grid,
  .page-slot-games__features-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-slot-games__game-card,
  .page-slot-games__promo-card,
  .page-slot-games__guide-item,
  .page-slot-games__strategy-list li,
  .page-slot-games__feature-item,
  .page-slot-games__faq-item {
    padding: 25px;
  }
  .page-slot-games__card-image,
  .page-slot-games__promo-card .page-slot-games__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__card,
  .page-slot-games__section,
  .page-slot-games__container,
  .page-slot-games__game-grid,
  .page-slot-games__promo-grid,
  .page-slot-games__features-list,
  .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__guide-subtitle {
    font-size: 1.4rem;
  }
  .page-slot-games__feature-title {
    font-size: 1.3rem;
  }
  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-slot-games__faq-answer {
    padding: 15px 20px;
  }
  .page-slot-games__faq-toggle {
    font-size: 1.3rem;
  }
}