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

/* BEM Naming: page-slot-games-jackpot-tips__element-name */
/* Colors: #26A9E0 (main), #FFFFFF (aux), #EA7C07 (login), #000000 (black) */

.page-slot-games-jackpot-tips {
  color: #333333; /* Default text color for light body background */
  background-color: var(--background-color, #f5f5f5); /* Ensure body background is light */
}

.page-slot-games-jackpot-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
}

.page-slot-games-jackpot-tips__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-slot-games-jackpot-tips__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff; /* Explicit white background for content block */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Overlap with image for visual effect */
  position: relative;
  z-index: 10;
  color: #333333;
}

.page-slot-games-jackpot-tips__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
  max-width: 100%; /* Ensure H1 doesn't overflow */
  font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
}

.page-slot-games-jackpot-tips__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}

.page-slot-games-jackpot-tips__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Default section background */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  color: #333333;
}

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

.page-slot-games-jackpot-tips__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444444;
}

.page-slot-games-jackpot-tips__highlight {
  color: #26A9E0;
  font-weight: 600;
}

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

.page-slot-games-jackpot-tips__faq-list {
  margin-top: 30px;
}

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

.page-slot-games-jackpot-tips__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-slot-games-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-slot-games-jackpot-tips__faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-left: 15px;
  color: #000000;
}

.page-slot-games-jackpot-tips__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
}

.page-slot-games-jackpot-tips__cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #26A9E0; /* Brand color background */
  color: #ffffff; /* White text for brand color background */
}

.page-slot-games-jackpot-tips__cta-section .page-slot-games-jackpot-tips__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-tips__cta-section .page-slot-games-jackpot-tips__paragraph {
  color: #f0f0f0;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

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

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

.page-slot-games-jackpot-tips__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-slot-games-jackpot-tips__btn-primary:hover {
  background-color: #d16b05;
  border-color: #d16b05;
  transform: translateY(-2px);
}

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

.page-slot-games-jackpot-tips__btn-secondary:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-slot-games-jackpot-tips__link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games-jackpot-tips__link:hover {
  color: #1e87b7;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-slot-games-jackpot-tips__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-slot-games-jackpot-tips__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    line-height: 1.3 !important;
  }

  .page-slot-games-jackpot-tips__intro-text {
    font-size: 1rem !important;
  }

  .page-slot-games-jackpot-tips__section,
  .page-slot-games-jackpot-tips__cta-section {
    padding: 30px 15px !important;
    margin-bottom: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-slot-games-jackpot-tips__paragraph {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .page-slot-games-jackpot-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-slot-games-jackpot-tips__image-content {
    margin: 20px auto !important;
  }

  /* Image containers */
  .page-slot-games-jackpot-tips__hero-image-wrapper,
  .page-slot-games-jackpot-tips__content-area,
  .page-slot-games-jackpot-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games-jackpot-tips__faq-item summary {
    padding: 15px 20px !important;
    font-size: 1rem !important;
  }

  .page-slot-games-jackpot-tips__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 0.9rem !important;
  }

  .page-slot-games-jackpot-tips__cta-buttons {
    flex-direction: column;
    gap: 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 !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}