/* style/slot-games.css */

/* Base styles for the page-slot-games */
.page-slot-games {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3 {
  color: #F2FFF6; /* Main text color for headings */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-slot-games h2 {
  font-size: 2.5em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.page-slot-games h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 20px;
}

.page-slot-games p {
  margin-bottom: 15px;
  color: #A7D9B8; /* Secondary text color */
}

.page-slot-games a {
  color: #2AD16F;
  text-decoration: none;
}

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

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

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 40px;
}

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

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

.page-slot-games__description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
}

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

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

.page-slot-games__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-slot-games__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-slot-games__btn-small {
  padding: 10px 20px;
  min-width: 150px;
}

/* Sections */
.page-slot-games__introduction-section,
.page-slot-games__game-types-section,
.page-slot-games__tips-section,
.page-slot-games__payment-section,
.page-slot-games__faq-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-slot-games__dark-section {
  background-color: #11271B; /* Card BG color for dark sections */
  padding: 60px 0;
}

.page-slot-games__dark-section h2,
.page-slot-games__dark-section h3,
.page-slot-games__dark-section p,
.page-slot-games__dark-section li {
  color: #F2FFF6;
}

.page-slot-games__section-title {
  margin-bottom: 40px;
  padding-bottom: 10px;
  position: relative;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #F2C14E; /* Gold color */
  border-radius: 2px;
}

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

.page-slot-games__feature-card {
  background-color: #11271B;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E;
}

.page-slot-games__feature-card:hover {
  transform: translateY(-5px);
}

.page-slot-games__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games__card-title {
  color: #F2FFF6;
  font-size: 1.3em;
  margin-bottom: 10px;
}

/* Game Type List & Showcase */
.page-slot-games__game-type-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-slot-games__game-type-list li {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.page-slot-games__game-type-list li:hover {
  background-color: #0A4B2C;
}

.page-slot-games__list-item-title {
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-slot-games__game-showcase {
  text-align: center;
}

.page-slot-games__game-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

/* Guide List & Tips List */
.page-slot-games__guide-list,
.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
}

.page-slot-games__guide-list li,
.page-slot-games__tips-list li {
  background-color: #0A4B2C; /* Deep Green color */
  border-left: 5px solid #F2C14E; /* Gold accent */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slot-games__tips-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Promotions Section */
.page-slot-games__promo-list {
  list-style: disc inside;
  padding-left: 20px;
  color: #A7D9B8;
  margin-bottom: 30px;
}

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

/* Payment Section */
.page-slot-games__payment-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-slot-games__payment-list li {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 15px 25px;
  color: #F2FFF6;
  font-weight: 500;
  white-space: nowrap;
}

.page-slot-games__payment-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Support Section */
.page-slot-games__support-channels {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: center;
}

.page-slot-games__support-channels li {
  margin-bottom: 10px;
  color: #A7D9B8;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 30px;
}

.page-slot-games__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #0A4B2C;
  transition: background-color 0.3s ease;
}

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

.page-slot-games__faq-item summary:hover {
  background-color: #0A4B2C;
}

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

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E;
}

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

.page-slot-games__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8;
  background-color: #11271B;
  border-top: 1px solid #2E7A4E;
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games h1 {
    font-size: 2em;
  }

  .page-slot-games h2 {
    font-size: 1.8em;
  }

  .page-slot-games h3 {
    font-size: 1.3em;
  }

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

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

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 10px;
  }

  .page-slot-games__introduction-section,
  .page-slot-games__why-choose-section,
  .page-slot-games__game-types-section,
  .page-slot-games__guide-section,
  .page-slot-games__tips-section,
  .page-slot-games__promotions-section,
  .page-slot-games__payment-section,
  .page-slot-games__support-section,
  .page-slot-games__faq-section,
  .page-slot-games__conclusion-section {
    padding: 40px 0;
  }

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

  .page-slot-games__hero-image,
  .page-slot-games__feature-image,
  .page-slot-games__game-image,
  .page-slot-games__tips-image,
  .page-slot-games__payment-image,
  .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__game-showcase,
  .page-slot-games__tips-section img,
  .page-slot-games__payment-section img {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__payment-list {
    flex-direction: column;
    align-items: center;
  }

  .page-slot-games__payment-list li {
    width: 100%;
    text-align: center;
  }

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

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

/* Desktop specific for video container width, if present */
.page-slot-games__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}