/* style/resources-slot365-slot-game-strategy-guide.css */

/* Base styles for the page content */
.page-resources-slot365-slot-game-strategy-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (var(--dark-bg)), so text is light */
  background-color: var(--dark-bg); /* Inherit from shared.css */
}

.page-resources-slot365-slot-game-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-resources-slot365-slot-game-strategy-guide__hero-section {
  position: relative;
  background: linear-gradient(135deg, #8B0000, #FFD700); /* Brand colors for hero background */
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  /* Assuming shared.css handles body padding-top. This is internal padding for the hero content. */
  padding-top: 80px; 
}

.page-resources-slot365-slot-game-strategy-guide__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-resources-slot365-slot-game-strategy-guide__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-slot365-slot-game-strategy-guide__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-slot365-slot-game-strategy-guide__hero-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main brand color */
  color: #000000; /* Dark text for contrast on gold */
  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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-slot365-slot-game-strategy-guide__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-slot365-slot-game-strategy-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3; /* Subtle background image */
}

.page-resources-slot365-slot-game-strategy-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no filter on images */
}

/* Content Section */
.page-resources-slot365-slot-game-strategy-guide__content-section {
  padding: 60px 20px;
  background-color: var(--dark-bg); /* Ensure dark background */
}

.page-resources-slot365-slot-game-strategy-guide__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-resources-slot365-slot-game-strategy-guide__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-resources-slot365-slot-game-strategy-guide__paragraph {
  font-size: 1.1em;
  color: #f0f0f0; /* Light text on dark background */
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-resources-slot365-slot-game-strategy-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-slot365-slot-game-strategy-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-slot365-slot-game-strategy-guide__nested-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
  color: #f0f0f0;
}

.page-resources-slot365-slot-game-strategy-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-resources-slot365-slot-game-strategy-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center image */
  filter: none; /* Ensure no filter on images */
}

/* CTA Buttons Group */
.page-resources-slot365-slot-game-strategy-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-resources-slot365-slot-game-strategy-guide__btn-primary,
.page-resources-slot365-slot-game-strategy-guide__btn-secondary {
  display: inline-block;
  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-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  flex-grow: 1;
  max-width: 300px; /* Limit individual button width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-slot365-slot-game-strategy-guide__btn-primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-resources-slot365-slot-game-strategy-guide__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-slot365-slot-game-strategy-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-slot365-slot-game-strategy-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-resources-slot365-slot-game-strategy-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ item on dark body */
}

.page-resources-slot365-slot-game-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.1); /* Lighter background for question */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff; /* Light text for question */
}

.page-resources-slot365-slot-game-strategy-guide__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-resources-slot365-slot-game-strategy-guide__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-resources-slot365-slot-game-strategy-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700; /* Gold for FAQ question titles */
}

.page-resources-slot365-slot-game-strategy-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Gold for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-slot365-slot-game-strategy-guide__faq-item.active .page-resources-slot365-slot-game-strategy-guide__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Example transformation for minus sign */
}

.page-resources-slot365-slot-game-strategy-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0; /* Light text for answer */
}

.page-resources-slot365-slot-game-strategy-guide__faq-item.active .page-resources-slot365-slot-game-strategy-guide__faq-answer {
  max-height: 2000px !important; /* Ensure it expands sufficiently */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08); /* Slightly different background for expanded answer */
  border-radius: 0 0 8px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-slot365-slot-game-strategy-guide__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}


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

  .page-resources-slot365-slot-game-strategy-guide__hero-description {
    font-size: 1.2em;
  }

  .page-resources-slot365-slot-game-strategy-guide__section-title {
    font-size: 2em;
  }

  .page-resources-slot365-slot-game-strategy-guide__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  /* Ensure content area does not cause horizontal scroll */
  .page-resources-slot365-slot-game-strategy-guide {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .page-resources-slot365-slot-game-strategy-guide__container,
  .page-resources-slot365-slot-game-strategy-guide__hero-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .page-resources-slot365-slot-game-strategy-guide__hero-section {
    padding-top: 40px !important; /* Internal padding for mobile hero content */
    padding-bottom: 40px;
  }
  
  .page-resources-slot365-slot-game-strategy-guide__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-resources-slot365-slot-game-strategy-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-resources-slot365-slot-game-strategy-guide__hero-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-resources-slot365-slot-game-strategy-guide__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-slot365-slot-game-strategy-guide__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-slot365-slot-game-strategy-guide__paragraph,
  .page-resources-slot365-slot-game-strategy-guide__list-item {
    font-size: 1em;
  }

  /* Images responsive */
  .page-resources-slot365-slot-game-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    filter: none; /* Ensure no filter on images */
  }

  .page-resources-slot365-slot-game-strategy-guide__image-wrapper {
    margin: 20px 0;
  }

  /* CTA buttons responsive */
  .page-resources-slot365-slot-game-strategy-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-slot365-slot-game-strategy-guide__btn-primary,
  .page-resources-slot365-slot-game-strategy-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* FAQ responsive */
  .page-resources-slot365-slot-game-strategy-guide__faq-question {
    padding: 15px 20px;
  }
  
  .page-resources-slot365-slot-game-strategy-guide__faq-question h3 {
    font-size: 1.1em;
  }
  
  .page-resources-slot365-slot-game-strategy-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  
  .page-resources-slot365-slot-game-strategy-guide__faq-answer {
    padding: 0 20px;
  }
  
  .page-resources-slot365-slot-game-strategy-guide__faq-item.active .page-resources-slot365-slot-game-strategy-guide__faq-answer {
    padding: 15px 20px !important;
  }
}