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

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

.page-slot-games__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6; /* Text Main */
}

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

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

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

.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: 50px;
  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;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
}

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

.page-slot-games__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-3px);
}

.page-slot-games__section {
  padding: 60px 0;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-slot-games__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-slot-games__introduction p,
.page-slot-games__guide p,
.page-slot-games__strategy p,
.page-slot-games__promotions p,
.page-slot-games__security p {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

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

.page-slot-games__game-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.page-slot-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__game-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-slot-games__game-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-slot-games__btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-slot-games__btn-play:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-slot-games__guide-content,
.page-slot-games__strategy-content,
.page-slot-games__security-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-slot-games__guide-text,
.page-slot-games__strategy-text,
.page-slot-games__security-text {
  flex: 1;
}

.page-slot-games__guide-image-wrapper,
.page-slot-games__strategy-image-wrapper,
.page-slot-games__security-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page-slot-games__guide-image,
.page-slot-games__strategy-image,
.page-slot-games__security-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__promo-card {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.page-slot-games__promo-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__promo-content {
  flex: 1;
}

.page-slot-games__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-slot-games__promo-list li {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-slot-games__promo-list li::before {
  content: '★';
  color: #F2C14E; /* Gold */
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-slot-games__faq-item {
  margin-bottom: 15px;
  padding: 0;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-slot-games__faq-question:hover {
  background-color: #13994A;
}

.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;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-slot-games__faq-answer {
  padding: 15px 20px 5px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  border-top: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

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

  .page-slot-games__main-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

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

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-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 !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-slot-games__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-slot-games__sub-title {
    font-size: 1.5rem;
    margin-top: 25px;
  }

  .page-slot-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-slot-games__guide-content,
  .page-slot-games__strategy-content,
  .page-slot-games__security-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games__guide-image-wrapper,
  .page-slot-games__strategy-image-wrapper,
  .page-slot-games__security-image-wrapper {
    order: -1; /* Image appears above text on mobile */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }

  .page-slot-games__guide-image,
  .page-slot-games__strategy-image,
  .page-slot-games__security-image,
  .page-slot-games__promo-image,
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
  }

  .page-slot-games__promo-card {
    flex-direction: column;
    gap: 20px;
  }

  .page-slot-games__promo-image {
    width: 100%;
  }

  .page-slot-games__promo-list li {
    font-size: 1rem;
  }

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

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

  /* General content area containers to prevent overflow */
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

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

  .page-slot-games__games-showcase .page-slot-games__games-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .page-slot-games__games-grid > div {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    max-width: 700px;
  }

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

  .page-slot-games__description {
    font-size: 1.05rem;
  }

  .page-slot-games__cta-buttons {
    gap: 15px;
  }

  .page-slot-games__guide-content,
  .page-slot-games__strategy-content,
  .page-slot-games__security-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games__guide-image-wrapper,
  .page-slot-games__strategy-image-wrapper,
  .page-slot-games__security-image-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .page-slot-games__promo-card {
    flex-direction: column;
  }

  .page-slot-games__promo-image {
    width: 100%;
  }
}