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

/* Base styles for the page content */
.page-slot-games-jackpot-tips {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-slot-games-jackpot-tips__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-jackpot-tips__section-title {
  font-size: clamp(2em, 3.5vw, 3em); /* H1 rules applied to H2, use clamp for controlled size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #26A9E0; /* Brand color for titles */
}

.page-slot-games-jackpot-tips__subsection-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for subtitles */
}

.page-slot-games-jackpot-tips__sub-subsection-title {
  font-size: clamp(1.2em, 2vw, 1.5em);
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffffff; /* White for dark sections */
}

.page-slot-games-jackpot-tips p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Light text for dark body background */
}

.page-slot-games-jackpot-tips__list,
.page-slot-games-jackpot-tips__ordered-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games-jackpot-tips__list li,
.page-slot-games-jackpot-tips__ordered-list li {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #f0f0f0; /* Light text for dark body background */
}

.page-slot-games-jackpot-tips__list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
}

.page-slot-games-jackpot-tips__ordered-list li::before {
  content: counter(list-item) '.';
  counter-increment: list-item;
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Hero Section */
.page-slot-games-jackpot-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body padding-top handles header offset */
  min-height: 70vh;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(38, 169, 224, 0.8), rgba(0, 0,0, 0.8));
}

.page-slot-games-jackpot-tips__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height to prevent image from being too tall */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-slot-games-jackpot-tips__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-games-jackpot-tips__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Max H1 size for desktop */
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

.page-slot-games-jackpot-tips__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-slot-games-jackpot-tips__center-btn {
  margin: 30px auto 0 auto;
}

/* Section Backgrounds for Contrast */
.page-slot-games-jackpot-tips__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than body for differentiation */
  color: #ffffff;
}

.page-slot-games-jackpot-tips__light-bg {
  background-color: #1a1a1a; /* Dark gray for contrast with body, but still dark */
  color: #f0f0f0;
}

.page-slot-games-jackpot-tips__light-bg .page-slot-games-jackpot-tips__subsection-title,
.page-slot-games-jackpot-tips__light-bg .page-slot-games-jackpot-tips__sub-subsection-title {
  color: #26A9E0;
}

.page-slot-games-jackpot-tips__light-bg p,
.page-slot-games-jackpot-tips__light-bg .page-slot-games-jackpot-tips__list li,
.page-slot-games-jackpot-tips__light-bg .page-slot-games-jackpot-tips__ordered-list li {
  color: #e0e0e0;
}

/* Image Content Section */
.page-slot-games-jackpot-tips__image-content-section .page-slot-games-jackpot-tips__container {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-slot-games-jackpot-tips__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-slot-games-jackpot-tips__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: block;
}

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

/* Grid for Tips & Strategy */
.page-slot-games-jackpot-tips__tips-strategy-section {
  padding: 60px 20px;
}

.page-slot-games-jackpot-tips__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-slot-games-jackpot-tips__grid-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #e0e0e0;
}

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

.page-slot-games-jackpot-tips__grid-item .page-slot-games-jackpot-tips__subsection-title {
  margin-top: 0;
  color: #26A9E0;
}

.page-slot-games-jackpot-tips__grid-item p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  color: #e0e0e0;
}

.page-slot-games-jackpot-tips__grid-item .page-slot-games-jackpot-tips__list {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

/* Promotions Section */
.page-slot-games-jackpot-tips__promotions-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-slot-games-jackpot-tips__promo-image-wrapper {
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpot-tips__promo-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Guide Section */
.page-slot-games-jackpot-tips__guide-section {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.page-slot-games-jackpot-tips__guide-section .page-slot-games-jackpot-tips__subsection-title {
  color: #26A9E0;
}

.page-slot-games-jackpot-tips__guide-section p {
  color: #e0e0e0;
}

/* FAQ Section */
.page-slot-games-jackpot-tips__faq-section {
  background-color: #0d0d0d;
  padding: 60px 20px;
}

.page-slot-games-jackpot-tips__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slot-games-jackpot-tips__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  background-color: #26A9E0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

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

.page-slot-games-jackpot-tips__faq-qtext {
  flex-grow: 1;
  color: #FFFFFF;
}

.page-slot-games-jackpot-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #FFFFFF;
}

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

.page-slot-games-jackpot-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #1a1a1a;
}

.page-slot-games-jackpot-tips__faq-answer p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-slot-games-jackpot-tips__cta-final-section {
  background: linear-gradient(90deg, #26A9E0, #1a8cc2);
  padding: 80px 20px;
  color: #FFFFFF;
}

.page-slot-games-jackpot-tips__cta-final-section .page-slot-games-jackpot-tips__section-title {
  color: #FFFFFF;
}

.page-slot-games-jackpot-tips__cta-final-section p {
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-slot-games-jackpot-tips__image-content-section .page-slot-games-jackpot-tips__container {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-games-jackpot-tips__text-content {
    margin-top: 30px;
  }
  .page-slot-games-jackpot-tips__grid-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-tips__section {
    padding: 40px 0;
  }

  .page-slot-games-jackpot-tips__hero-content {
    padding: 0 15px;
  }

  .page-slot-games-jackpot-tips__main-title {
    font-size: 2.2em; /* Adjusted for mobile */
  }

  .page-slot-games-jackpot-tips__description {
    font-size: 1.1em;
  }

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

  .page-slot-games-jackpot-tips__btn-primary,
  .page-slot-games-jackpot-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-slot-games-jackpot-tips__subsection-title {
    font-size: 1.4em;
    margin-top: 30px;
  }

  .page-slot-games-jackpot-tips p,
  .page-slot-games-jackpot-tips__list li,
  .page-slot-games-jackpot-tips__ordered-list li,
  .page-slot-games-jackpot-tips__faq-answer p {
    font-size: 1em;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-slot-games-jackpot-tips__list,
  .page-slot-games-jackpot-tips__ordered-list,
  .page-slot-games-jackpot-tips__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-slot-games-jackpot-tips__image-full-width,
  .page-slot-games-jackpot-tips__card-image,
  .page-slot-games-jackpot-tips__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-jackpot-tips__image-wrapper,
  .page-slot-games-jackpot-tips__promo-image-wrapper,
  .page-slot-games-jackpot-tips__grid-item,
  .page-slot-games-jackpot-tips__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-slot-games-jackpot-tips__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-slot-games-jackpot-tips__hero-section {
    padding-top: 10px !important;
  }
}