.page-slot-games-jackpot-strategy {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensuring consistency with body background */
}

.page-slot-games-jackpot-strategy__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.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;
  max-width: 900px;
  padding: 20px;
}

.page-slot-games-jackpot-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.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: 2px solid transparent;
  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-color: #26A9E0;
}

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

.page-slot-games-jackpot-strategy__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

.page-slot-games-jackpot-strategy__section {
  padding: 60px 0;
}

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

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

.page-slot-games-jackpot-strategy__section-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-jackpot-strategy__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-jackpot-strategy__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-strategy__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__light-bg {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-slot-games-jackpot-strategy__strategy-item {
  background-color: rgba(38, 169, 224, 0.2);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__strategy-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__strategy-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-jackpot-strategy__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #26A9E0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

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

.page-slot-games-jackpot-strategy__list-item p {
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__mistake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games-jackpot-strategy__mistake-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__mistake-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-strategy__mistake-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

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

.page-slot-games-jackpot-strategy__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-strategy__advantage-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__advantage-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__advantage-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__cta-section {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games-jackpot-strategy__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games-jackpot-strategy__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-jackpot-strategy__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #ffffff;
  transition: transform 0.3s ease;
}

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

.page-slot-games-jackpot-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__faq-item.active .page-slot-games-jackpot-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 3em;
  }
  .page-slot-games-jackpot-strategy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-jackpot-strategy__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-jackpot-strategy__hero-description {
    font-size: 1em;
  }
  .page-slot-games-jackpot-strategy__hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px; /* Constrain button width */
    margin: 0 auto;
  }
  .page-slot-games-jackpot-strategy__btn-primary,
  .page-slot-games-jackpot-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-jackpot-strategy__section-text {
    font-size: 1em;
  }
  .page-slot-games-jackpot-strategy__content-area,
  .page-slot-games-jackpot-strategy__grid,
  .page-slot-games-jackpot-strategy__strategy-grid,
  .page-slot-games-jackpot-strategy__list,
  .page-slot-games-jackpot-strategy__mistake-grid,
  .page-slot-games-jackpot-strategy__advantages-grid,
  .page-slot-games-jackpot-strategy__cta-section,
  .page-slot-games-jackpot-strategy__faq-container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-slot-games-jackpot-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-jackpot-strategy__card-image,
  .page-slot-games-jackpot-strategy__mistake-image {
    height: auto;
    max-height: 200px; /* Constrain height for smaller screens */
  }
  .page-slot-games-jackpot-strategy__cta-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .page-slot-games-jackpot-strategy__faq-question {
    padding: 15px 20px;
  }
  .page-slot-games-jackpot-strategy__faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games-jackpot-strategy__faq-answer {
    padding: 0 20px;
  }
  .page-slot-games-jackpot-strategy__faq-item.active .page-slot-games-jackpot-strategy__faq-answer {
    padding: 15px 20px;
  }
}

@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.6em;
  }
  .page-slot-games-jackpot-strategy__card-title,
  .page-slot-games-jackpot-strategy__strategy-title,
  .page-slot-games-jackpot-strategy__list-title,
  .page-slot-games-jackpot-strategy__mistake-title,
  .page-slot-games-jackpot-strategy__advantage-title {
    font-size: 1.2em;
  }
}