/* style/blog-jackpot-winning-strategies.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #0d0d0d;
  --btn-register-bg: #C30808;
  --btn-login-bg: #C30808;
  --btn-register-text: #FFFF00;
  --btn-login-text: #FFFF00;
}

.page-blog-jackpot-winning-strategies {
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-jackpot-winning-strategies__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0; /* Handled by body padding-top */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.page-blog-jackpot-winning-strategies__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-jackpot-winning-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-jackpot-winning-strategies__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-jackpot-winning-strategies__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-blog-jackpot-winning-strategies__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-jackpot-winning-strategies__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-jackpot-winning-strategies__btn-primary,
.page-blog-jackpot-winning-strategies__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-jackpot-winning-strategies__btn-primary {
  background-color: var(--btn-register-bg);
  color: var(--btn-register-text);
  border: 2px solid var(--btn-register-bg);
}

.page-blog-jackpot-winning-strategies__btn-primary:hover {
  background-color: darken(var(--btn-register-bg), 10%);
  border-color: darken(var(--btn-register-bg), 10%);
}

.page-blog-jackpot-winning-strategies__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-jackpot-winning-strategies__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-blog-jackpot-winning-strategies__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

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

.page-blog-jackpot-winning-strategies__sub-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-jackpot-winning-strategies p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-blog-jackpot-winning-strategies__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.page-blog-jackpot-winning-strategies__list li {
  margin-bottom: 8px;
}

.page-blog-jackpot-winning-strategies__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px 0;
  object-fit: cover;
}

.page-blog-jackpot-winning-strategies__faq-list {
  margin-top: 30px;
}

.page-blog-jackpot-winning-strategies__faq-item {
  background-color: rgba(1, 116, 57, 0.05); /* Light primary color tint */
  border: 1px solid rgba(1, 116, 57, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-jackpot-winning-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
}

.page-blog-jackpot-winning-strategies__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-jackpot-winning-strategies__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-blog-jackpot-winning-strategies__faq-item[open] .page-blog-jackpot-winning-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-jackpot-winning-strategies__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.page-blog-jackpot-winning-strategies__call-to-action {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-blog-jackpot-winning-strategies__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-blog-jackpot-winning-strategies__cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-jackpot-winning-strategies__call-to-action .page-blog-jackpot-winning-strategies__section-title {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-blog-jackpot-winning-strategies__call-to-action .page-blog-jackpot-winning-strategies__description {
  color: var(--secondary-color);
  margin-bottom: 40px;
}

.page-blog-jackpot-winning-strategies__responsible-gaming-promo {
  background-color: var(--bg-dark);
  padding: 50px 20px;
  text-align: center;
  color: var(--secondary-color);
}

.page-blog-jackpot-winning-strategies__responsible-gaming-promo .page-blog-jackpot-winning-strategies__section-title {
  color: var(--secondary-color);
}

.page-blog-jackpot-winning-strategies__responsible-gaming-promo .page-blog-jackpot-winning-strategies__description {
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-jackpot-winning-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Responsive Styles --- */

/* Tablet and Mobile */
@media (max-width: 1024px) {
  .page-blog-jackpot-winning-strategies__hero-content {
    margin-top: 30px;
  }

  .page-blog-jackpot-winning-strategies__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-blog-jackpot-winning-strategies__description {
    font-size: 1rem;
  }

  .page-blog-jackpot-winning-strategies__section-title {
    font-size: 2rem;
  }

  .page-blog-jackpot-winning-strategies__sub-title {
    font-size: 1.4rem;
  }

  .page-blog-jackpot-winning-strategies__content-area {
    padding: 30px 20px;
  }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  .page-blog-jackpot-winning-strategies {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-jackpot-winning-strategies__hero-section {
    padding-bottom: 40px;
    padding-top: 0 !important; /* Ensure no double padding-top */
  }

  .page-blog-jackpot-winning-strategies__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-jackpot-winning-strategies__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-blog-jackpot-winning-strategies__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-jackpot-winning-strategies__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-blog-jackpot-winning-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-blog-jackpot-winning-strategies__btn-primary,
  .page-blog-jackpot-winning-strategies__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    min-width: unset;
  }

  .page-blog-jackpot-winning-strategies__content-area {
    padding: 25px 15px;
    margin-bottom: 30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-jackpot-winning-strategies__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-jackpot-winning-strategies__sub-title {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-jackpot-winning-strategies p {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .page-blog-jackpot-winning-strategies__list {
    font-size: 1rem;
    margin-left: 20px;
    margin-bottom: 15px;
  }

  .page-blog-jackpot-winning-strategies__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px 0;
  }

  .page-blog-jackpot-winning-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-jackpot-winning-strategies__faq-answer {
    padding: 0 20px 15px;
  }

  .page-blog-jackpot-winning-strategies__call-to-action {
    padding: 40px 15px;
  }

  .page-blog-jackpot-winning-strategies__responsible-gaming-promo {
    padding: 30px 15px;
  }

  .page-blog-jackpot-winning-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* General image responsiveness for all images except logo-item (if any) */
  .page-blog-jackpot-winning-strategies img:not(.page-blog-jackpot-winning-strategies__logo-item) {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* LOGO Carousel items - if present, must maintain fixed size */
  .page-blog-jackpot-winning-strategies__logo-item {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    box-sizing: border-box;
  }
}

/* No logo carousel on this page, but including required media query for completeness */
@media (max-width: 768px) {
  .page-blog-jackpot-winning-strategies__logo-carousel-section {
    padding: 10px 15px 20px;
    /* Additional styles for logo carousel if it were present */
  }
  .page-blog-jackpot-winning-strategies__logo-carousel {
    /* styles */
  }
  /* .page-blog-jackpot-winning-strategies__logo-item styles already defined above for fixed size */
}