/* style/slot-games-jackpot-strategy.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --background-color-dark: #26A9E0;
  --button-login-color: #EA7C07;
}

.page-slot-games-jackpot-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light body background */
  background-color: var(--background-color-light);
}

.page-slot-games-jackpot-strategy__light-bg {
  background-color: var(--background-color-light);
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-strategy__dark-bg {
  background-color: var(--background-color-dark);
  color: var(--text-color-light);
}

/* Hero Section */
.page-slot-games-jackpot-strategy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header-offset */
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games-jackpot-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
}

.page-slot-games-jackpot-strategy__hero-content {
  max-width: 900px;
  padding: 20px;
  margin-top: 20px;
}

.page-slot-games-jackpot-strategy__hero-title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 15px;
  /* No fixed large font-size, relying on font-weight and line-height */
  font-size: clamp(2.2rem, 4vw, 3.2rem); /* Using clamp for responsive H1 */
}

.page-slot-games-jackpot-strategy__hero-description {
  font-size: 1.1rem;
  color: var(--text-color-dark);
  margin-bottom: 30px;
}

/* General Section Styling */
.page-slot-games-jackpot-strategy__section {
  padding: 40px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-slot-games-jackpot-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.page-slot-games-jackpot-strategy__subsection-title {
  font-size: 1.8rem;
  color: var(--text-color-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-jackpot-strategy__text-block {
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-strategy__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-strategy__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-slot-games-jackpot-strategy__image-container {
  text-align: center;
  margin: 30px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* Buttons */
.page-slot-games-jackpot-strategy__btn-primary,
.page-slot-games-jackpot-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games-jackpot-strategy__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
  margin-right: 15px;
}

.page-slot-games-jackpot-strategy__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-slot-games-jackpot-strategy__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-slot-games-jackpot-strategy__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-slot-games-jackpot-strategy__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Video Section */
.page-slot-games-jackpot-strategy__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header-offset */
  text-align: center;
}

.page-slot-games-jackpot-strategy__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.page-slot-games-jackpot-strategy__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  cursor: pointer;
}

.page-slot-games-jackpot-strategy__video-caption {
  margin-top: 15px;
  font-style: italic;
  color: var(--text-color-light);
  font-size: 0.95rem;
}

/* FAQ Section */
.page-slot-games-jackpot-strategy__faq-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 20px auto;
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__faq-list {
  margin-top: 30px;
}

.page-slot-games-jackpot-strategy__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-jackpot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-slot-games-jackpot-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-jackpot-strategy__faq-question::marker {
  display: none;
}

.page-slot-games-jackpot-strategy__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-jackpot-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-slot-games-jackpot-strategy__faq-answer {
  padding: 15px 20px;
  font-size: 1rem;
  color: var(--text-color-dark);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-slot-games-jackpot-strategy__hero-section {
    padding-bottom: 20px;
  }

  .page-slot-games-jackpot-strategy__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-slot-games-jackpot-strategy__hero-description {
    font-size: 1rem;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.8rem;
  }

  .page-slot-games-jackpot-strategy__subsection-title {
    font-size: 1.5rem;
  }

  .page-slot-games-jackpot-strategy__text-block,
  .page-slot-games-jackpot-strategy__list-item,
  .page-slot-games-jackpot-strategy__faq-answer {
    font-size: 15px;
  }

  /* Mobile image responsiveness */
  .page-slot-games-jackpot-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-jackpot-strategy__image-container,
  .page-slot-games-jackpot-strategy__hero-image-wrapper,
  .page-slot-games-jackpot-strategy__content-area,
  .page-slot-games-jackpot-strategy__section,
  .page-slot-games-jackpot-strategy__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile video responsiveness */
  .page-slot-games-jackpot-strategy video,
  .page-slot-games-jackpot-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-jackpot-strategy__video-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-jackpot-strategy__video-container,
  .page-slot-games-jackpot-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-slot-games-jackpot-strategy__cta-button,
  .page-slot-games-jackpot-strategy__btn-primary,
  .page-slot-games-jackpot-strategy__btn-secondary,
  .page-slot-games-jackpot-strategy a[class*="button"],
  .page-slot-games-jackpot-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-right: 0 !important; /* Remove right margin for stacking */
  }
  
  .page-slot-games-jackpot-strategy__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games-jackpot-strategy__faq-question {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

/* Color contrast safety for specific elements */
.page-slot-games-jackpot-strategy p,
.page-slot-games-jackpot-strategy li {
  color: var(--text-color-dark);
}

.page-slot-games-jackpot-strategy__card {
  background: var(--background-color-light);
  color: var(--text-color-dark);
  border: 1px solid #e0e0e0;
}

.page-slot-games-jackpot-strategy__dark-section {
  background: var(--background-color-dark);
  color: var(--text-color-light);
}

.page-slot-games-jackpot-strategy__btn-primary {
  background: var(--primary-color);
  color: var(--text-color-light);
  border: 2px solid var(--primary-color);
}

.page-slot-games-jackpot-strategy__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* Ensure no filter on images */
.page-slot-games-jackpot-strategy img {
  filter: none; /* Explicitly remove any potential filter */
}