/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
  color: #ffffff; /* Light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

.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__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff; /* Ensure title is visible on dark backgrounds */
}

.page-slot-games__section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 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; /* Small top padding, body handles header offset */
  overflow: hidden;
  text-align: center;
  background-color: #0a0a0a; /* Ensure dark background for hero */
}

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

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-slot-games__hero-description {
  font-size: clamp(1.1em, 2vw, 1.4em);
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

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

.page-slot-games__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

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

.page-slot-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

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

/* Text Links */
.page-slot-games__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games__text-link:hover {
  color: #1a8cc7;
}

/* About Slots Section */
.page-slot-games__about-slots {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__about-slots .page-slot-games__section-title,
.page-slot-games__about-slots .page-slot-games__section-description {
  color: #000000;
}

.page-slot-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-slot-games__text-block {
  flex: 1;
}

.page-slot-games__image-block {
  flex: 1;
  text-align: center;
}

.page-slot-games__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.page-slot-games__why-choose {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-slot-games__why-choose .page-slot-games__section-title,
.page-slot-games__why-choose .page-slot-games__section-description {
  color: #ffffff;
}

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

.page-slot-games__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-slot-games__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

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

/* How To Play Section */
.page-slot-games__how-to-play {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__how-to-play .page-slot-games__section-title,
.page-slot-games__how-to-play .page-slot-games__section-description {
  color: #000000;
}

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

.page-slot-games__step-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  text-align: center;
  position: relative;
  padding-top: 60px;
}

.page-slot-games__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.4);
}

.page-slot-games__step-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Game Types Section */
.page-slot-games__game-types {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-slot-games__game-types .page-slot-games__section-title,
.page-slot-games__game-types .page-slot-games__section-description {
  color: #ffffff;
}

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

.page-slot-games__type-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__type-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Expert Tips Section */
.page-slot-games__expert-tips {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__expert-tips .page-slot-games__section-title,
.page-slot-games__expert-tips .page-slot-games__section-description {
  color: #000000;
}

.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-slot-games__tip-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  line-height: 1.8;
}

.page-slot-games__tip-item strong {
  color: #26A9E0;
}

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

.page-slot-games__faq-section .page-slot-games__section-title,
.page-slot-games__faq-section .page-slot-games__section-description {
  color: #ffffff;
}

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

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

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

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

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

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Conclusion Section */
.page-slot-games__conclusion-section {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__conclusion-section .page-slot-games__section-title,
.page-slot-games__conclusion-section .page-slot-games__section-description {
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games__content-wrapper {
    flex-direction: column;
  }
  .page-slot-games__image-block {
    margin-top: 30px;
  }
}

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

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

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

  .page-slot-games__hero-content {
    padding: 15px;
  }

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

  .page-slot-games__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  /* Containers for images/videos/buttons */
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__content-wrapper,
  .page-slot-games__text-block,
  .page-slot-games__image-block,
  .page-slot-games__features-grid,
  .page-slot-games__feature-card,
  .page-slot-games__guide-steps,
  .page-slot-games__step-card,
  .page-slot-games__type-grid,
  .page-slot-games__type-card,
  .page-slot-games__tips-list,
  .page-slot-games__tip-item,
  .page-slot-games__faq-list,
  .page-slot-games__faq-item,
  .page-slot-games__hero-section,
  .page-slot-games__hero-image-wrapper,
  .page-slot-games__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-slot-games__hero-section { /* Override padding for hero section */
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-slot-games__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Buttons responsive */
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important; /* Ensure buttons take full width */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }
  .page-slot-games__cta-center {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__cta-center .page-slot-games__btn-primary {
      margin-left: 0; /* Remove potential horizontal margins */
      margin-right: 0;
  }

  .page-slot-games__features-grid,
  .page-slot-games__guide-steps,
  .page-slot-games__type-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__step-card {
    padding-top: 50px;
  }

  .page-slot-games__step-number {
    top: -25px;
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }

  .page-slot-games__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-slot-games__faq-answer {
    font-size: 1em;
    padding: 15px;
  }

  .page-slot-games__video-section { /* if present, small top padding */
    padding-top: 10px !important;
  }
}

/* Dark background elements */
.page-slot-games__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-slot-games__dark-bg .page-slot-games__section-title,
.page-slot-games__dark-bg .page-slot-games__section-description,
.page-slot-games__dark-bg h3,
.page-slot-games__dark-bg p,
.page-slot-games__dark-bg li {
  color: #ffffff;
}

.page-slot-games__dark-bg .page-slot-games__feature-card,
.page-slot-games__dark-bg .page-slot-games__type-card,
.page-slot-games__dark-bg .page-slot-games__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
}

.page-slot-games__dark-bg .page-slot-games__faq-question {
  background-color: rgba(38, 169, 224, 0.2);
}

/* Light background elements */
.page-slot-games__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games__light-bg .page-slot-games__section-title,
.page-slot-games__light-bg .page-slot-games__section-description,
.page-slot-games__light-bg h3,
.page-slot-games__light-bg p,
.page-slot-games__light-bg li {
  color: #333333;
}

.page-slot-games__light-bg .page-slot-games__step-card,
.page-slot-games__light-bg .page-slot-games__tip-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
}

.page-slot-games__light-bg .page-slot-games__step-title {
  color: #000000;
}