.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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%); /* Brand colors blend */
}

.page-slot-games-jackpot-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-slot-games-jackpot-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
}

.page-slot-games-jackpot-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-slot-games-jackpot-tips__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-slot-games-jackpot-tips__btn-primary,
.page-slot-games-jackpot-tips__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping for buttons */
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.page-slot-games-jackpot-tips__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary */
  border: 2px solid #FFD700;
}

.page-slot-games-jackpot-tips__btn-secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-slot-games-jackpot-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.7); /* Slightly lighter dark background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.page-slot-games-jackpot-tips__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #CC0000;
  padding-bottom: 15px;
}

.page-slot-games-jackpot-tips__sub-title {
  font-size: 2em;
  color: #CC0000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-tips__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-tips__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-slot-games-jackpot-tips__list-item {
  margin-bottom: 10px;
}

.page-slot-games-jackpot-tips__sub-list {
  list-style: circle inside;
  margin-left: 20px;
  margin-top: 10px;
}

.page-slot-games-jackpot-tips__sub-list-item {
  margin-bottom: 5px;
}

.page-slot-games-jackpot-tips__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-tips a {
  color: #FFD700; /* Gold for links */
  text-decoration: underline;
}

.page-slot-games-jackpot-tips a:hover {
  color: #CC0000;
}

/* FAQ Section */
.page-slot-games-jackpot-tips__faq-container {
  margin-top: 40px;
  border: 1px solid #CC0000;
  border-radius: 8px;
  overflow: hidden;
}

.page-slot-games-jackpot-tips__faq-item {
  border-bottom: 1px solid rgba(204, 0, 0, 0.5);
}

.page-slot-games-jackpot-tips__faq-item:last-child {
  border-bottom: none;
}

.page-slot-games-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(204, 0, 0, 0.2); /* Subtle red background */
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-tips__faq-question:hover {
  background-color: rgba(204, 0, 0, 0.4);
}

.page-slot-games-jackpot-tips__faq-question h3 {
  margin: 0;
  color: inherit;
}

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

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

.page-slot-games-jackpot-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Darker background for answer */
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-slot-games-jackpot-tips__faq-item.active .page-slot-games-jackpot-tips__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 20px;
}

.page-slot-games-jackpot-tips__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-slot-games-jackpot-tips__cta-buttons--bottom {
  margin-top: 50px;
}

/* Floating Buttons */
.page-slot-games-jackpot-tips__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-slot-games-jackpot-tips__floating-btn {
  background-color: #CC0000;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-slot-games-jackpot-tips__floating-btn:hover {
  background-color: #a00000;
  transform: translateY(-3px);
}

.page-slot-games-jackpot-tips__floating-btn--login {
  background-color: #FFD700;
  color: #333333;
}

.page-slot-games-jackpot-tips__floating-btn--login:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-tips__main-title {
    font-size: 2.8em;
  }

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

  .page-slot-games-jackpot-tips__section-title {
    font-size: 2em;
  }

  .page-slot-games-jackpot-tips__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-jackpot-tips__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content clears fixed header */
  }

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

  .page-slot-games-jackpot-tips__main-title {
    font-size: 2em;
  }

  .page-slot-games-jackpot-tips__hero-description {
    font-size: 1em;
  }

  .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;
    font-size: 1em;
  }

  .page-slot-games-jackpot-tips__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-slot-games-jackpot-tips__sub-title {
    font-size: 1.4em;
  }

  .page-slot-games-jackpot-tips__text-block,
  .page-slot-games-jackpot-tips__list,
  .page-slot-games-jackpot-tips__list-item {
    font-size: 0.95em;
  }

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

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

  .page-slot-games-jackpot-tips__faq-toggle {
    font-size: 1.2em;
  }

  .page-slot-games-jackpot-tips__faq-answer {
    padding: 15px;
  }

  .page-slot-games-jackpot-tips__floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .page-slot-games-jackpot-tips__floating-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}