/* style/game-strategies-slot-game-strategies.css */

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

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

.page-game-strategies-slot-game-strategies__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-strategies-slot-game-strategies__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-game-strategies-slot-game-strategies__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-game-strategies-slot-game-strategies__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-strategies-slot-game-strategies__sub-list {
  list-style: circle;
  margin-left: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-game-strategies-slot-game-strategies__sub-list-item {
  margin-bottom: 5px;
}

.page-game-strategies-slot-game-strategies__image-full-width {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-game-strategies-slot-game-strategies__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
  background-color: #1a1a1a; /* Slightly lighter dark background for hero */
}

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

.page-game-strategies-slot-game-strategies__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-game-strategies-slot-game-strategies__hero-title {
  font-size: 3.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-strategies-slot-game-strategies__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Buttons */
.page-game-strategies-slot-game-strategies__btn-primary,
.page-game-strategies-slot-game-strategies__cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  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-sizing: border-box;
}

.page-game-strategies-slot-game-strategies__btn-primary:hover,
.page-game-strategies-slot-game-strategies__cta-button:hover {
  background-color: #1e87b7;
  transform: translateY(-2px);
}

/* Content Sections */
.page-game-strategies-slot-game-strategies__content-area {
  padding: 60px 0;
}

.page-game-strategies-slot-game-strategies__intro-section,
.page-game-strategies-slot-game-strategies__money-management-section,
.page-game-strategies-slot-game-strategies__expert-tips-section {
  background-color: #121212; /* Dark background */
  color: #ffffff;
}

.page-game-strategies-slot-game-strategies__game-types-section,
.page-game-strategies-slot-game-strategies__bonus-features-section,
.page-game-strategies-slot-game-strategies__conclusion-section {
  background-color: #1a1a1a; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-game-strategies-slot-game-strategies__game-selection-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-game-strategies-slot-game-strategies__game-selection-section .page-game-strategies-slot-game-strategies__section-title,
.page-game-strategies-slot-game-strategies__game-selection-section .page-game-strategies-slot-game-strategies__paragraph,
.page-game-strategies-slot-game-strategies__game-selection-section .page-game-strategies-slot-game-strategies__list,
.page-game-strategies-slot-game-strategies__game-selection-section .page-game-strategies-slot-game-strategies__list-item,
.page-game-strategies-slot-game-strategies__game-selection-section .page-game-strategies-slot-game-strategies__sub-list-item {
  color: #ffffff;
}

/* FAQ Section */
.page-game-strategies-slot-game-strategies__faq-section {
  background-color: #121212;
  color: #ffffff;
  padding: 60px 0;
}

.page-game-strategies-slot-game-strategies__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-strategies-slot-game-strategies__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-game-strategies-slot-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #26A9E0;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-game-strategies-slot-game-strategies__faq-question:hover {
  background-color: #1e87b7;
}

.page-game-strategies-slot-game-strategies__faq-question h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
}

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

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

.page-game-strategies-slot-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #2e2e2e;
  color: #f0f0f0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-game-strategies-slot-game-strategies__faq-item.active .page-game-strategies-slot-game-strategies__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value for content */
  padding: 20px;
}

.page-game-strategies-slot-game-strategies__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategies-slot-game-strategies__hero-title {
    font-size: 2.8em;
  }

  .page-game-strategies-slot-game-strategies__hero-description {
    font-size: 1.1em;
  }

  .page-game-strategies-slot-game-strategies__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-strategies-slot-game-strategies {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-game-strategies-slot-game-strategies__container {
    padding: 0 15px;
  }

  .page-game-strategies-slot-game-strategies__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-game-strategies-slot-game-strategies__hero-title {
    font-size: 2em;
  }

  .page-game-strategies-slot-game-strategies__hero-description {
    font-size: 1em;
  }

  .page-game-strategies-slot-game-strategies__btn-primary,
  .page-game-strategies-slot-game-strategies__cta-button {
    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;
  }

  .page-game-strategies-slot-game-strategies__content-area {
    padding: 40px 0;
  }

  .page-game-strategies-slot-game-strategies__section-title {
    font-size: 1.8em;
  }

  .page-game-strategies-slot-game-strategies__paragraph,
  .page-game-strategies-slot-game-strategies__list-item {
    font-size: 1em;
  }

  .page-game-strategies-slot-game-strategies__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-strategies-slot-game-strategies__faq-question,
  .page-game-strategies-slot-game-strategies__faq-answer {
    padding: 15px;
  }

  .page-game-strategies-slot-game-strategies__faq-question h3 {
    font-size: 1.1em;
  }
  
  .page-game-strategies-slot-game-strategies__faq-item.active .page-game-strategies-slot-game-strategies__faq-answer {
    padding: 15px !important;
  }

  /* Ensure all containers with images/buttons/videos are responsive */
  .page-game-strategies-slot-game-strategies__section,
  .page-game-strategies-slot-game-strategies__card,
  .page-game-strategies-slot-game-strategies__container,
  .page-game-strategies-slot-game-strategies__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* If there were video elements, they would also need specific max-width: 100% !important; */
}

@media (max-width: 480px) {
  .page-game-strategies-slot-game-strategies__hero-title {
    font-size: 1.8em;
  }

  .page-game-strategies-slot-game-strategies__section-title {
    font-size: 1.5em;
  }
}