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

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

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

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
}

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

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

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

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

.page-slot-games__btn-secondary:hover {
  transform: translateY(-3px);
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-slot-games__info-section,
.page-slot-games__games-showcase,
.page-slot-games__guide-section,
.page-slot-games__tips-section,
.page-slot-games__promotions-section,
.page-slot-games__security-section,
.page-slot-games__faq-section,
.page-slot-games__cta-final {
  padding: 80px 0;
}

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

.page-slot-games__light-bg {
  background-color: #0A4B2C; /* Deep Green - slightly lighter than background */
  color: #F2FFF6; /* Text Main */
}

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

.page-slot-games__feature-card,
.page-slot-games__game-card,
.page-slot-games__step-card,
.page-slot-games__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 250px; /* Ensure cards have minimum height */
  color: #F2FFF6;
}

.page-slot-games__feature-icon,
.page-slot-games__game-thumbnail,
.page-slot-games__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 150px;
  object-fit: cover;
}

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

.page-slot-games__feature-description,
.page-slot-games__game-desc,
.page-slot-games__promo-desc {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-slot-games__step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(87, 227, 141, 0.3);
}

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

.page-slot-games__step-desc {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__tips-list li {
  background-color: #11271B; /* Card BG */
  padding: 15px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F; /* Button color */
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.page-slot-games__tips-image,
.page-slot-games__security-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 150px;
  object-fit: cover;
}

.page-slot-games__note {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-top: 30px;
}

.page-slot-games__security-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__security-list li {
  background-color: #0A4B2C; /* Deep Green */
  padding: 15px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #57E38D; /* Glow */
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.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: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider - slightly different background */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-slot-games__faq-question:hover {
  background-color: #2E7A4E; /* Border */
}

.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: 15px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  border-top: 1px solid #2E7A4E; /* Border */
}

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

.page-slot-games__faq-item summary {
  list-style: none;
}

.page-slot-games__cta-final .page-slot-games__section-title,
.page-slot-games__cta-final .page-slot-games__description {
  text-align: center;
  margin-bottom: 20px;
}

.page-slot-games__cta-final .page-slot-games__cta-buttons {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-image-wrapper {
    max-height: 500px;
  }

  .page-slot-games__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

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

  .page-slot-games__cta-buttons {
    flex-wrap: wrap;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

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

  .page-slot-games__container {
    padding: 0 15px;
  }

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

  .page-slot-games__hero-image-wrapper {
    max-height: 400px;
    margin-bottom: 20px;
  }

  .page-slot-games__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-slot-games__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .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;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 30px;
    padding-top: 40px;
  }

  .page-slot-games__info-section,
  .page-slot-games__games-showcase,
  .page-slot-games__guide-section,
  .page-slot-games__tips-section,
  .page-slot-games__promotions-section,
  .page-slot-games__security-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-final {
    padding: 50px 0;
  }

  .page-slot-games__features-grid,
  .page-slot-games__game-types-grid,
  .page-slot-games__steps-grid,
  .page-slot-games__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__feature-card,
  .page-slot-games__game-card,
  .page-slot-games__step-card,
  .page-slot-games__promo-card {
    padding: 20px;
  }

  .page-slot-games__feature-title,
  .page-slot-games__game-title,
  .page-slot-games__promo-title {
    font-size: 1.3rem;
  }

  .page-slot-games__text-block {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-slot-games__tips-list,
  .page-slot-games__security-list {
    margin: 30px auto;
  }

  .page-slot-games__tips-list li,
  .page-slot-games__security-list li {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .page-slot-games__tips-image,
  .page-slot-games__security-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 30px;
  }

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

  .page-slot-games__faq-answer {
    font-size: 0.95rem;
    padding: 12px 20px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__hero-section {
    padding-top: 10px !important; 
  }
}