.page-slot-games-jackpot-tips {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-slot-games-jackpot-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slot-games-jackpot-tips__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-slot-games-jackpot-tips__hero-image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.page-slot-games-jackpot-tips__hero-content {
  position: relative;
  z-index: 2;
  margin-top: -100px; /* Pull content up over image slightly */
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  padding: 80px 15px 40px;
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
}

.page-slot-games-jackpot-tips__main-title {
  font-size: 44px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games-jackpot-tips__description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-tips__cta-button {
  display: inline-block;
  background-color: #EA7C07;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-tips__cta-button:hover {
  background-color: #e06a00;
}

.page-slot-games-jackpot-tips__intro-section,
.page-slot-games-jackpot-tips__strategy-section,
.page-slot-games-jackpot-tips__mistakes-section,
.page-slot-games-jackpot-tips__cta-section,
.page-slot-games-jackpot-tips__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games-jackpot-tips__intro-section {
    padding-top: 10px; /* Small top padding for the first content block */
}

.page-slot-games-jackpot-tips__section-title {
  font-size: 36px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-slot-games-jackpot-tips__intro-section p,
.page-slot-games-jackpot-tips__mistakes-section p {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

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

.page-slot-games-jackpot-tips__strategy-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-jackpot-tips__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-slot-games-jackpot-tips__card-title {
  font-size: 24px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-jackpot-tips__strategy-card p {
  font-size: 16px;
  color: #555555;
  text-align: left;
  flex-grow: 1;
}

.page-slot-games-jackpot-tips__learn-more-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-tips__learn-more-button:hover {
  background-color: #1e87c0;
}

.page-slot-games-jackpot-tips__mistake-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 20px auto;
  max-width: 800px;
}

.page-slot-games-jackpot-tips__mistake-list li {
  background-color: #f0f0f0;
  border-left: 5px solid #EA7C07;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 17px;
  color: #333333;
  text-align: left;
}

.page-slot-games-jackpot-tips__mistake-list li strong {
  color: #EA7C07;
}

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

.page-slot-games-jackpot-tips__btn-primary {
  background: #26A9E0;
  color: #ffffff;
}

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

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

.page-slot-games-jackpot-tips__btn-secondary:hover {
  background: #e0f2f7;
  color: #1e87c0;
}

/* FAQ Styles */
details.page-slot-games-jackpot-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-slot-games-jackpot-tips__faq-item summary.page-slot-games-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-slot-games-jackpot-tips__faq-item summary.page-slot-games-jackpot-tips__faq-question::-webkit-details-marker {
  display: none;
}
details.page-slot-games-jackpot-tips__faq-item summary.page-slot-games-jackpot-tips__faq-question:hover {
  background: #f5f5f5;
}
.page-slot-games-jackpot-tips__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-slot-games-jackpot-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-slot-games-jackpot-tips__faq-item .page-slot-games-jackpot-tips__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-tips__hero-image-wrapper {
    height: 400px;
  }

  .page-slot-games-jackpot-tips__main-title {
    font-size: 38px;
  }

  .page-slot-games-jackpot-tips__description {
    font-size: 17px;
  }

  .page-slot-games-jackpot-tips__section-title {
    font-size: 30px;
  }

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

  .page-slot-games-jackpot-tips__intro-section p,
  .page-slot-games-jackpot-tips__mistakes-section p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-tips__hero-image-wrapper {
    height: 300px !important;
  }

  .page-slot-games-jackpot-tips__hero-content {
    margin-top: -60px !important;
    padding: 60px 15px 30px !important;
  }

  .page-slot-games-jackpot-tips__main-title {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }

  .page-slot-games-jackpot-tips__description {
    font-size: 15px !important;
    margin-bottom: 20px !important;
  }

  .page-slot-games-jackpot-tips__cta-button {
    font-size: 18px !important;
    padding: 12px 25px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-jackpot-tips__intro-section,
  .page-slot-games-jackpot-tips__strategy-section,
  .page-slot-games-jackpot-tips__mistakes-section,
  .page-slot-games-jackpot-tips__cta-section,
  .page-slot-games-jackpot-tips__faq-section {
    padding: 40px 0 !important;
  }

  .page-slot-games-jackpot-tips__section-title {
    font-size: 26px !important;
    margin-bottom: 30px !important;
  }

  .page-slot-games-jackpot-tips__intro-section p,
  .page-slot-games-jackpot-tips__mistakes-section p {
    font-size: 15px !important;
    text-align: left !important;
  }

  .page-slot-games-jackpot-tips__strategy-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-slot-games-jackpot-tips__card-title {
    font-size: 20px !important;
  }

  .page-slot-games-jackpot-tips__strategy-card p {
    font-size: 15px !important;
  }

  .page-slot-games-jackpot-tips__learn-more-button {
    font-size: 15px !important;
    padding: 8px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-jackpot-tips__mistake-list {
    margin-top: 30px !important;
  }

  .page-slot-games-jackpot-tips__mistake-list li {
    font-size: 15px !important;
    padding: 12px 15px !important;
  }

  .page-slot-games-jackpot-tips__cta-buttons-group {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 30px !important;
  }

  .page-slot-games-jackpot-tips__cta-button.page-slot-games-jackpot-tips__btn-primary,
  .page-slot-games-jackpot-tips__cta-button.page-slot-games-jackpot-tips__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 !important;
    padding-right: 15px !important;
  }

  details.page-slot-games-jackpot-tips__faq-item summary.page-slot-games-jackpot-tips__faq-question { padding: 15px !important; }
  .page-slot-games-jackpot-tips__faq-qtext { font-size: 15px !important; }
  details.page-slot-games-jackpot-tips__faq-item .page-slot-games-jackpot-tips__faq-answer { padding: 0 15px 15px !important; }

  .page-slot-games-jackpot-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games-jackpot-tips__hero-section,
  .page-slot-games-jackpot-tips__intro-section .page-slot-games-jackpot-tips__container,
  .page-slot-games-jackpot-tips__strategy-section .page-slot-games-jackpot-tips__container,
  .page-slot-games-jackpot-tips__mistakes-section .page-slot-games-jackpot-tips__container,
  .page-slot-games-jackpot-tips__cta-section .page-slot-games-jackpot-tips__container,
  .page-slot-games-jackpot-tips__faq-section .page-slot-games-jackpot-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}