/* style/slot-games-jackpot-strategy.css */
.page-slot-games-jackpot-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Default body background */
}

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

/* Hero Section */
.page-slot-games-jackpot-strategy__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-slot-games-jackpot-strategy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-slot-games-jackpot-strategy__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
}

.page-slot-games-jackpot-strategy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-slot-games-jackpot-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-jackpot-strategy__btn-primary,
.page-slot-games-jackpot-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-slot-games-jackpot-strategy__btn-primary:hover {
  background-color: #1a7fb2;
  border-color: #1a7fb2;
}

.page-slot-games-jackpot-strategy__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

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

/* General Section Styling */
.page-slot-games-jackpot-strategy__introduction,
.page-slot-games-jackpot-strategy__strategy-importance,
.page-slot-games-jackpot-strategy__slot-types,
.page-slot-games-jackpot-strategy__capital-management,
.page-slot-games-jackpot-strategy__selection-strategy,
.page-slot-games-jackpot-strategy__jackpot-strategy,
.page-slot-games-jackpot-strategy__advanced-tips,
.page-slot-games-jackpot-strategy__common-mistakes,
.page-slot-games-jackpot-strategy__faq-section,
.page-slot-games-jackpot-strategy__conclusion {
  padding: 60px 0;
}

.page-slot-games-jackpot-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__section-title {
  color: #FFFFFF;
}

.page-slot-games-jackpot-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__text-block {
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__text-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__text-link {
  color: #FFFFFF;
}

.page-slot-games-jackpot-strategy__text-link:hover {
  text-decoration: none;
}

/* Background Colors */
.page-slot-games-jackpot-strategy__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-slot-games-jackpot-strategy__dark-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Content Grid */
.page-slot-games-jackpot-strategy__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-slot-games-jackpot-strategy__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page-slot-games-jackpot-strategy__text-content {
  flex: 1;
}

.page-slot-games-jackpot-strategy__image-wrapper {
  flex: 1;
  text-align: center;
}

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

/* Lists */
.page-slot-games-jackpot-strategy__list,
.page-slot-games-jackpot-strategy__ordered-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.page-slot-games-jackpot-strategy__list-item {
  background-color: #f8f8f8;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: #FFFFFF;
  color: #FFFFFF;
}

.page-slot-games-jackpot-strategy__list-title {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__list-title {
  color: #FFFFFF;
}

.page-slot-games-jackpot-strategy__list-description {
  font-size: 1em;
  color: #555555;
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__list-description {
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__ordered-list .page-slot-games-jackpot-strategy__list-item {
  counter-increment: list-counter;
  position: relative;
  padding-left: 40px;
  border-left: none;
  background-color: #f8f8f8;
}

.page-slot-games-jackpot-strategy__ordered-list .page-slot-games-jackpot-strategy__list-item::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 15px;
  width: 30px;
  height: 30px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__ordered-list .page-slot-games-jackpot-strategy__list-item {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__ordered-list .page-slot-games-jackpot-strategy__list-item::before {
  background-color: #FFFFFF;
  color: #26A9E0;
}

/* FAQ Section */
.page-slot-games-jackpot-strategy__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-slot-games-jackpot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #333333;
  list-style: none; /* For details/summary native styling */
}

.page-slot-games-jackpot-strategy__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

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

.page-slot-games-jackpot-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__faq-answer {
  padding: 15px 25px;
  background-color: #FFFFFF;
  color: #555555;
  font-size: 1em;
}

.page-slot-games-jackpot-strategy__faq-answer p {
  margin-bottom: 10px;
}

.page-slot-games-jackpot-strategy__faq-answer p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 2.5em;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 2em;
  }

  .page-slot-games-jackpot-strategy__content-grid {
    flex-direction: column;
  }

  .page-slot-games-jackpot-strategy__content-grid:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-slot-games-jackpot-strategy__hero-section {
    min-height: 400px;
    padding: 40px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 2em;
  }

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

  .page-slot-games-jackpot-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-jackpot-strategy__btn-primary,
  .page-slot-games-jackpot-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-games-jackpot-strategy__introduction,
  .page-slot-games-jackpot-strategy__strategy-importance,
  .page-slot-games-jackpot-strategy__slot-types,
  .page-slot-games-jackpot-strategy__capital-management,
  .page-slot-games-jackpot-strategy__selection-strategy,
  .page-slot-games-jackpot-strategy__jackpot-strategy,
  .page-slot-games-jackpot-strategy__advanced-tips,
  .page-slot-games-jackpot-strategy__common-mistakes,
  .page-slot-games-jackpot-strategy__faq-section,
  .page-slot-games-jackpot-strategy__conclusion {
    padding: 40px 0;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot-strategy__text-block {
    font-size: 1em;
  }

  .page-slot-games-jackpot-strategy__list-item {
    padding: 15px;
    margin-bottom: 10px;
  }

  .page-slot-games-jackpot-strategy__list-title {
    font-size: 1.3em;
  }

  .page-slot-games-jackpot-strategy__ordered-list .page-slot-games-jackpot-strategy__list-item {
    padding-left: 35px;
  }

  .page-slot-games-jackpot-strategy__ordered-list .page-slot-games-jackpot-strategy__list-item::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    top: 18px;
  }
  
  /* Mobile image responsiveness */
  .page-slot-games-jackpot-strategy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-jackpot-strategy__section,
  .page-slot-games-jackpot-strategy__card,
  .page-slot-games-jackpot-strategy__container,
  .page-slot-games-jackpot-strategy__image-wrapper,
  .page-slot-games-jackpot-strategy__video-section,
  .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;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
  
  .page-slot-games-jackpot-strategy__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 1.8em;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.5em;
  }

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

  .page-slot-games-jackpot-strategy__faq-answer {
    padding: 10px 20px;
  }
}