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

/* Base styles for the page content, ensuring light text on dark body background */
.page-slot-games-jackpot-secrets {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css var(--black-color) */
}

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

/* Hero Section */
.page-slot-games-jackpot-secrets__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-slot-games-jackpot-secrets__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games-jackpot-secrets__hero-content-wrapper {
  width: 100%;
  padding-top: 40px;
  text-align: center;
  background-color: transparent;
}

.page-slot-games-jackpot-secrets__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-secrets__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-slot-games-jackpot-secrets__btn-primary,
.page-slot-games-jackpot-secrets__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  max-width: 100%;
}

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

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

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

.page-slot-games-jackpot-secrets__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1e87c0;
  border-color: #1e87c0;
}

/* General Section Styles */
.page-slot-games-jackpot-secrets__section {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.03); /* Slightly transparent white for sections on dark body */
  margin-bottom: 20px;
}

.page-slot-games-jackpot-secrets__section:last-of-type {
  margin-bottom: 0;
}

.page-slot-games-jackpot-secrets__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-secrets__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Grid for cards */
.page-slot-games-jackpot-secrets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpot-secrets__card {
  background-color: #ffffff; /* White background for cards */
  color: #333333; /* Dark text for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-slot-games-jackpot-secrets__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-secrets__card-text {
  font-size: 0.95rem;
  color: #555555;
}

/* List styles */
.page-slot-games-jackpot-secrets__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games-jackpot-secrets__list-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for list items */
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.05rem;
}

.page-slot-games-jackpot-secrets__list-item strong {
  color: #ffffff;
}

.page-slot-games-jackpot-secrets__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
  object-fit: cover;
}

/* Dark section for CTA bottom */
.page-slot-games-jackpot-secrets__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 50px 20px;
  border-radius: 10px;
  text-align: center;
}

.page-slot-games-jackpot-secrets__dark-section .page-slot-games-jackpot-secrets__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-slot-games-jackpot-secrets__dark-section .page-slot-games-jackpot-secrets__text-block {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-slot-games-jackpot-secrets__faq-list {
  margin-top: 30px;
}

.page-slot-games-jackpot-secrets__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #f0f0f0;
}

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

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

.page-slot-games-jackpot-secrets__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-slot-games-jackpot-secrets__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-jackpot-secrets__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-slot-games-jackpot-secrets__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #cccccc;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-slot-games-jackpot-secrets__section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }

  .page-slot-games-jackpot-secrets__card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  /* Enforce responsive behavior for all images, videos, and buttons */
  .page-slot-games-jackpot-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-slot-games-jackpot-secrets__section,
  .page-slot-games-jackpot-secrets__card,
  .page-slot-games-jackpot-secrets__container,
  .page-slot-games-jackpot-secrets__hero-section,
  .page-slot-games-jackpot-secrets__hero-image-wrapper,
  .page-slot-games-jackpot-secrets__hero-content-wrapper,
  .page-slot-games-jackpot-secrets__cta-buttons,
  .page-slot-games-jackpot-secrets__grid,
  .page-slot-games-jackpot-secrets__dark-section,
  .page-slot-games-jackpot-secrets__faq-list,
  .page-slot-games-jackpot-secrets__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }

  .page-slot-games-jackpot-secrets__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-slot-games-jackpot-secrets__btn-primary,
  .page-slot-games-jackpot-secrets__btn-secondary,
  .page-slot-games-jackpot-secrets a[class*="button"],
  .page-slot-games-jackpot-secrets a[class*="btn"] {
    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;
  }

  .page-slot-games-jackpot-secrets__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-slot-games-jackpot-secrets__description {
    font-size: 1rem;
  }

  .page-slot-games-jackpot-secrets__section {
    padding: 40px 0;
  }

  .page-slot-games-jackpot-secrets__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

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

  .page-slot-games-jackpot-secrets__card-title {
    font-size: 1.2rem;
  }

  .page-slot-games-jackpot-secrets__list-item {
    padding: 15px;
    font-size: 0.95rem;
  }

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

  .page-slot-games-jackpot-secrets__faq-answer {
    padding: 15px;
    font-size: 0.9rem;
  }
}