/* style/slot-games.css */

/* Body background is #0a0a0a (dark), so use light text */
.page-slot-games {
  color: #ffffff; /* Default text color for dark background */
  font-family: 'Arial', sans-serif;
}

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

.page-slot-games__section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-slot-games__text-block {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__highlight {
  color: #EA7C07;
  font-weight: 700;
}

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

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  margin-top: -80px; /* Pull content slightly over image for visual flow */
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  color: #ffffff;
}

.page-slot-games__main-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #FFFFFF; /* Ensure high contrast */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-slot-games__description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-slot-games__btn-primary {
  background: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
  background: #1e87b0;
  border-color: #1e87b0;
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-slot-games__btn-tertiary {
  background: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

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

/* Intro Section */
.page-slot-games__intro-section {
  background: #0a0a0a; /* Dark background from body */
  color: #ffffff;
  padding: 60px 0;
}

/* Why Choose Us Section */
.page-slot-games__why-choose-us {
  background: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
  padding: 60px 0;
}

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

.page-slot-games__feature-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark bg */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #ffffff;
}

.page-slot-games__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-slot-games__card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Game Categories Section */
.page-slot-games__game-categories {
  background: #0a0a0a;
  color: #ffffff;
  padding: 60px 0;
}

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

.page-slot-games__list-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: #ffffff;
}

.page-slot-games__list-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games__list-description {
  font-size: 16px;
  line-height: 1.5;
  color: #f0f0f0;
}

/* How To Play Section */
.page-slot-games__how-to-play {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
}

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

.page-slot-games__step-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #ffffff;
}

.page-slot-games__step-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Section */
.page-slot-games__promotions-section {
  background: #0a0a0a;
  color: #ffffff;
  padding: 60px 0;
}

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

/* Tips Section */
.page-slot-games__tips-section {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0;
}

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

/* FAQ Section */
.page-slot-games__faq-section {
  background: #0a0a0a;
  color: #ffffff;
  padding: 60px 0;
}

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

.page-slot-games__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-slot-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #26A9E0;
  background: rgba(255, 255, 255, 0.05);
}

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

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

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  margin-left: 15px;
  color: #EA7C07;
}

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

.page-slot-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Bottom Section */
.page-slot-games__cta-bottom {
  background: #26A9E0;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-slot-games__cta-bottom .page-slot-games__section-title {
  color: #FFFFFF;
}

.page-slot-games__cta-bottom .page-slot-games__description {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(28px, 4vw, 48px);
  }

  .page-slot-games__description {
    font-size: 18px;
  }

  .page-slot-games__section-title {
    font-size: clamp(24px, 3vw, 40px);
  }
}

@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 0 15px;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-slot-games__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    border-radius: 0;
  }

  .page-slot-games__main-title {
    font-size: clamp(26px, 6vw, 36px) !important;
  }

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

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

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__text-block,
  .page-slot-games__card-description,
  .page-slot-games__list-description,
  .page-slot-games__faq-answer p {
    font-size: 15px;
  }

  .page-slot-games__section-title {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 25px;
  }

  .page-slot-games__feature-card,
  .page-slot-games__step-card,
  .page-slot-games__list-item {
    padding: 20px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__hero-image-wrapper,
  .page-slot-games__feature-card,
  .page-slot-games__step-card,
  .page-slot-games__list-item,
  .page-slot-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-slot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-slot-games__faq-toggle {
    font-size: 20px;
  }

  .page-slot-games__faq-answer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-content {
    margin-top: -30px;
  }

  .page-slot-games__main-title {
    font-size: clamp(24px, 7vw, 32px) !important;
  }

  .page-slot-games__description {
    font-size: 15px;
  }
}