/* style/game-guides-slot-games.css */
.page-game-guides-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background #121212 */
  background-color: transparent; /* Main content background is transparent, relying on body background */
}

.page-game-guides-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #8B0000, #FFD700);
}

.page-game-guides-slot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-game-guides-slot-games__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-game-guides-slot-games__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-game-guides-slot-games__section {
  padding: 60px 20px;
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

.page-game-guides-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-guides-slot-games__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-game-guides-slot-games__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slot-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-slot-games__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #121212;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-guides-slot-games__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-game-guides-slot-games__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-guides-slot-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-guides-slot-games__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-game-guides-slot-games__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides-slot-games__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Grid 2 Column for Types of Slots */
.page-game-guides-slot-games__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-game-guides-slot-games__card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-guides-slot-games__card:hover {
  transform: translateY(-5px);
}

.page-game-guides-slot-games__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-game-guides-slot-games__card-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-game-guides-slot-games__card-text {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px 20px;
}

/* Strategy and Tips Lists */
.page-game-guides-slot-games__strategy-list,
.page-game-guides-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.page-game-guides-slot-games__strategy-item,
.page-game-guides-slot-games__tips-item {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides-slot-games__strategy-heading,
.page-game-guides-slot-games__tips-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides-slot-games__strategy-text,
.page-game-guides-slot-games__tips-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-game-guides-slot-games__strategy-image,
.page-game-guides-slot-games__tips-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* Promotions Section */
.page-game-guides-slot-games__section--promotions {
  background: linear-gradient(90deg, #8B0000, #FFD700);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-guides-slot-games__promotion-content {
  flex: 1;
  padding-right: 30px;
  text-align: left;
}

.page-game-guides-slot-games__promotion-content .page-game-guides-slot-games__section-title {
  color: #ffffff;
  text-align: left;
  text-shadow: none;
  font-size: 2.5em;
}

.page-game-guides-slot-games__promotion-content .page-game-guides-slot-games__section-intro {
  color: #f0f0f0;
  text-align: left;
  margin-bottom: 30px;
  max-width: none;
}

.page-game-guides-slot-games__promotion-image {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* FAQ Section */
.page-game-guides-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-guides-slot-games__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
  background: rgba(255, 215, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-game-guides-slot-games__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.page-game-guides-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-game-guides-slot-games__faq-item.active .page-game-guides-slot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-game-guides-slot-games__faq-item.active .page-game-guides-slot-games__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-game-guides-slot-games__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

/* Global image settings for content area */
.page-game-guides-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-guides-slot-games__hero-title {
    font-size: 3em;
  }
  .page-game-guides-slot-games__section-title {
    font-size: 2.2em;
  }
  .page-game-guides-slot-games__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides-slot-games__promotion-content {
    padding-right: 0;
    text-align: center;
  }
  .page-game-guides-slot-games__promotion-content .page-game-guides-slot-games__section-title {
    color: #ffffff;
    text-align: center;
  }
  .page-game-guides-slot-games__promotion-content .page-game-guides-slot-games__section-intro {
    color: #f0f0f0;
    text-align: center;
  }
  .page-game-guides-slot-games__promotion-image {
    max-width: 80%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slot-games__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header on mobile */
  }
  .page-game-guides-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-guides-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-game-guides-slot-games__section {
    padding: 40px 15px;
  }
  .page-game-guides-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-slot-games__section-intro {
    font-size: 1em;
  }
  .page-game-guides-slot-games__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Images and videos */
  .page-game-guides-slot-games img,
  .page-game-guides-slot-games video {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides-slot-games__container,
  .page-game-guides-slot-games__section,
  .page-game-guides-slot-games__card,
  .page-game-guides-slot-games__feature-item,
  .page-game-guides-slot-games__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-game-guides-slot-games__promotion-image {
    margin-left: auto;
    margin-right: auto;
  }
  .page-game-guides-slot-games__feature-icon {
    max-width: 100%;
  }
  .page-game-guides-slot-games__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }
  .page-game-guides-slot-games__strategy-image,
  .page-game-guides-slot-games__tips-image {
    width: 100%;
    height: auto;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-game-guides-slot-games__feature-icon {
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-game-guides-slot-games__promotion-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}