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

:root {
  --f1686s-win-primary: #11A84E;
  --f1686s-win-secondary: #22C768;
  --f1686s-win-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --f1686s-win-card-bg: #11271B;
  --f1686s-win-background: #08160F;
  --f1686s-win-text-main: #F2FFF6;
  --f1686s-win-text-secondary: #A7D9B8;
  --f1686s-win-border: #2E7A4E;
  --f1686s-win-glow: #57E38D;
  --f1686s-win-gold: #F2C14E;
  --f1686s-win-divider: #1E3A2A;
  --f1686s-win-deep-green: #0A4B2C;
}

.page-slot-games-jackpot-secrets {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--f1686s-win-text-main); /* Default text color for the page */
  background-color: var(--f1686s-win-background); /* Overall page background */
}

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

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

.page-slot-games-jackpot-secrets__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height to prevent excessive scrolling */
  overflow: hidden;
}

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

.page-slot-games-jackpot-secrets__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 30px 20px;
  background: rgba(17, 39, 27, 0.85); /* Slightly transparent background for readability */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly with the image for visual flow */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpot-secrets__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--f1686s-win-text-main);
  margin-bottom: 20px;
}

.page-slot-games-jackpot-secrets__hero-description {
  font-size: 1.15em;
  color: var(--f1686s-win-text-secondary);
  margin-bottom: 30px;
}

.page-slot-games-jackpot-secrets__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: var(--f1686s-win-gold);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-slot-games-jackpot-secrets__intro-section,
.page-slot-games-jackpot-secrets__promotions-section,
.page-slot-games-jackpot-secrets__faq-section {
  padding: 60px 0;
  background-color: var(--f1686s-win-background);
}

.page-slot-games-jackpot-secrets__content-block,
.page-slot-games-jackpot-secrets__registration-section,
.page-slot-games-jackpot-secrets__conclusion-section {
  padding: 60px 0;
  background-color: var(--f1686s-win-deep-green);
}

.page-slot-games-jackpot-secrets__dark-section {
  background-color: var(--f1686s-win-card-bg);
  color: var(--f1686s-win-text-main);
}

.page-slot-games-jackpot-secrets__paragraph {
  font-size: 1.1em;
  color: var(--f1686s-win-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-jackpot-secrets__list,
.page-slot-games-jackpot-secrets__numbered-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-slot-games-jackpot-secrets__list-item {
  background-color: var(--f1686s-win-card-bg);
  border-left: 4px solid var(--f1686s-win-primary);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: var(--f1686s-win-text-main);
  font-size: 1.05em;
}

.page-slot-games-jackpot-secrets__numbered-list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  color: var(--f1686s-win-text-main);
  font-size: 1.05em;
}

.page-slot-games-jackpot-secrets__numbered-list li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--f1686s-win-primary);
  color: var(--f1686s-win-text-main);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-slot-games-jackpot-secrets__cta-button {
  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;
  text-align: center;
}

.page-slot-games-jackpot-secrets__btn-primary {
  background: var(--f1686s-win-button-gradient);
  color: var(--f1686s-win-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games-jackpot-secrets__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-slot-games-jackpot-secrets__btn-secondary {
  background: none;
  color: var(--f1686s-win-primary);
  border: 2px solid var(--f1686s-win-primary);
}

.page-slot-games-jackpot-secrets__btn-secondary:hover {
  background-color: var(--f1686s-win-primary);
  color: var(--f1686s-win-text-main);
}

.page-slot-games-jackpot-secrets__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slot-games-jackpot-secrets__card-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: var(--f1686s-win-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  color: var(--f1686s-win-text-main);
  display: flex;
  flex-direction: column;
}

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

.page-slot-games-jackpot-secrets__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--f1686s-win-gold);
  padding: 20px 20px 10px;
}

.page-slot-games-jackpot-secrets__card-text {
  font-size: 1em;
  color: var(--f1686s-win-text-secondary);
  padding: 0 20px 20px;
  flex-grow: 1;
}

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

.page-slot-games-jackpot-secrets__faq-list {
  margin-top: 40px;
}

.page-slot-games-jackpot-secrets__faq-item {
  background-color: var(--f1686s-win-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--f1686s-win-deep-green);
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--f1686s-win-text-main);
  border-bottom: 1px solid var(--f1686s-win-divider);
  list-style: none;
}

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

.page-slot-games-jackpot-secrets__faq-item summary {
  list-style: none;
}

.page-slot-games-jackpot-secrets__faq-qtext {
  flex-grow: 1;
  color: var(--f1686s-win-gold);
}

.page-slot-games-jackpot-secrets__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--f1686s-win-glow);
  transition: transform 0.3s ease;
}

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

.page-slot-games-jackpot-secrets__faq-answer {
  padding: 20px;
  font-size: 1.05em;
  color: var(--f1686s-win-text-secondary);
}

.page-slot-games-jackpot-secrets__copyright-info {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: var(--f1686s-win-text-secondary);
  background-color: var(--f1686s-win-background);
  border-top: 1px solid var(--f1686s-win-divider);
}

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

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

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

  .page-slot-games-jackpot-secrets__hero-content {
    margin-top: -50px;
    padding: 20px 15px;
  }

  .page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-slot-games-jackpot-secrets__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-slot-games-jackpot-secrets__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-slot-games-jackpot-secrets__section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-slot-games-jackpot-secrets__intro-section,
  .page-slot-games-jackpot-secrets__promotions-section,
  .page-slot-games-jackpot-secrets__faq-section,
  .page-slot-games-jackpot-secrets__content-block,
  .page-slot-games-jackpot-secrets__registration-section,
  .page-slot-games-jackpot-secrets__conclusion-section {
    padding: 40px 0;
  }

  .page-slot-games-jackpot-secrets__card-grid,
  .page-slot-games-jackpot-secrets__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-slot-games-jackpot-secrets__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-jackpot-secrets__card-image {
    height: 200px;
  }

  .page-slot-games-jackpot-secrets__list-item,
  .page-slot-games-jackpot-secrets__numbered-list li {
    font-size: 0.95em;
    padding-left: 35px;
  }

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

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

  /* Mobile image responsiveness */
  .page-slot-games-jackpot-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-jackpot-secrets__hero-image-wrapper,
  .page-slot-games-jackpot-secrets__card,
  .page-slot-games-jackpot-secrets__promotion-cards,
  .page-slot-games-jackpot-secrets__faq-item,
  .page-slot-games-jackpot-secrets__container,
  .page-slot-games-jackpot-secrets__intro-section,
  .page-slot-games-jackpot-secrets__content-block,
  .page-slot-games-jackpot-secrets__promotions-section,
  .page-slot-games-jackpot-secrets__registration-section,
  .page-slot-games-jackpot-secrets__faq-section,
  .page-slot-games-jackpot-secrets__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-slot-games-jackpot-secrets__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-slot-games-jackpot-secrets__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

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

/* Ensure contrast for all text elements */
.page-slot-games-jackpot-secrets h1, .page-slot-games-jackpot-secrets h2, .page-slot-games-jackpot-secrets h3, .page-slot-games-jackpot-secrets h4, .page-slot-games-jackpot-secrets h5, .page-slot-games-jackpot-secrets h6 {
  color: var(--f1686s-win-text-main);
}

.page-slot-games-jackpot-secrets__dark-section p,
.page-slot-games-jackpot-secrets__dark-section li,
.page-slot-games-jackpot-secrets__dark-section .page-slot-games-jackpot-secrets__card-text {
  color: var(--f1686s-win-text-secondary);
}

.page-slot-games-jackpot-secrets__card-title {
  color: var(--f1686s-win-gold);
}

.page-slot-games-jackpot-secrets__faq-qtext {
  color: var(--f1686s-win-gold);
}

.page-slot-games-jackpot-secrets__faq-toggle {
  color: var(--f1686s-win-glow);
}

/* Global image style restrictions */
.page-slot-games-jackpot-secrets img {
  filter: none !important; /* Absolutely no CSS filters to change image colors */
}

.page-slot-games-jackpot-secrets__hero-section h1,
.page-slot-games-jackpot-secrets__main-title {
  /* No fixed large font-size, rely on clamp for responsiveness */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--f1686s-win-text-main);
  font-size: clamp(2.2em, 5vw, 3.2em); /* Example clamp for responsive H1 */
}