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

/* Body background color from shared.css: var(--background-color) */
/* Custom colors */
:root {
  --f8best-primary-green: #11A84E;
  --f8best-secondary-green: #22C768;
  --f8best-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --f8best-card-bg: #11271B;
  --f8best-background: #08160F;
  --f8best-text-main: #F2FFF6;
  --f8best-text-secondary: #A7D9B8;
  --f8best-border: #2E7A4E;
  --f8best-glow: #57E38D;
  --f8best-gold: #F2C14E;
  --f8best-divider: #1E3A2A;
  --f8best-deep-green: #0A4B2C;
}

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

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

.page-slot-games-jackpot-secrets__section-title {
  font-size: 2.5em;
  color: var(--f8best-text-main);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games-jackpot-secrets__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--f8best-text-secondary);
}

.page-slot-games-jackpot-secrets__text-center {
  text-align: center;
}

/* Hero Section */
.page-slot-games-jackpot-secrets__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles padding-top, small decorative padding-top here */
  background-color: var(--f8best-background);
  overflow: hidden;
}

.page-slot-games-jackpot-secrets__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

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

.page-slot-games-jackpot-secrets__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-jackpot-secrets__main-title {
  font-size: clamp(2.5em, 5vw, 3.2em); /* H1 font size with clamp */
  color: var(--f8best-gold);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.page-slot-games-jackpot-secrets__hero-description {
  font-size: 1.2em;
  color: var(--f8best-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games-jackpot-secrets__btn-primary {
  background: var(--f8best-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-slot-games-jackpot-secrets__btn-primary:hover {
  box-shadow: 0 0 15px var(--f8best-glow);
  transform: translateY(-2px);
}

.page-slot-games-jackpot-secrets__btn-secondary {
  background: transparent;
  color: var(--f8best-glow);
  border: 2px solid var(--f8best-glow);
}

.page-slot-games-jackpot-secrets__btn-secondary:hover {
  background: var(--f8best-glow);
  color: var(--f8best-background);
  transform: translateY(-2px);
}

/* Introduction Section */
.page-slot-games-jackpot-secrets__introduction-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games-jackpot-secrets__introduction-section .page-slot-games-jackpot-secrets__section-title {
  color: #000000;
}

.page-slot-games-jackpot-secrets__introduction-section .page-slot-games-jackpot-secrets__text-block {
  color: #333333;
}

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

/* f8best Advantages Section */
.page-slot-games-jackpot-secrets__f8best-advantages-section {
  padding: 80px 0;
  background-color: var(--f8best-background);
}

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

.page-slot-games-jackpot-secrets__feature-card {
  background-color: var(--f8best-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
  border: 1px solid var(--f8best-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-games-jackpot-secrets__card-title {
  font-size: 1.5em;
  color: var(--f8best-gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-jackpot-secrets__card-text {
  color: var(--f8best-text-secondary);
  font-size: 1em;
}

/* Strategies Section */
.page-slot-games-jackpot-secrets__strategies-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games-jackpot-secrets__strategies-section .page-slot-games-jackpot-secrets__section-title {
  color: #000000;
}

.page-slot-games-jackpot-secrets__strategies-section .page-slot-games-jackpot-secrets__text-block {
  color: #333333;
}

.page-slot-games-jackpot-secrets__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games-jackpot-secrets__list-item {
  background-color: #f9f9f9;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-left: 5px solid var(--f8best-primary-green);
}

.page-slot-games-jackpot-secrets__list-title {
  font-size: 1.3em;
  color: var(--f8best-primary-green);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-jackpot-secrets__list-text {
  color: #555555;
}

/* Jackpot Types Section */
.page-slot-games-jackpot-secrets__jackpot-types-section {
  padding: 80px 0;
  background-color: var(--f8best-background);
}

.page-slot-games-jackpot-secrets__jackpot-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games-jackpot-secrets__jackpot-list .page-slot-games-jackpot-secrets__list-item {
  background-color: var(--f8best-card-bg);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border-left: 5px solid var(--f8best-gold);
}

.page-slot-games-jackpot-secrets__jackpot-list .page-slot-games-jackpot-secrets__list-title {
  color: var(--f8best-gold);
}

.page-slot-games-jackpot-secrets__jackpot-list .page-slot-games-jackpot-secrets__list-text {
  color: var(--f8best-text-secondary);
}

/* Responsible Gaming Section */
.page-slot-games-jackpot-secrets__responsible-gaming-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games-jackpot-secrets__responsible-gaming-section .page-slot-games-jackpot-secrets__section-title {
  color: #000000;
}

.page-slot-games-jackpot-secrets__responsible-gaming-section .page-slot-games-jackpot-secrets__text-block {
  color: #333333;
}

.page-slot-games-jackpot-secrets__responsibility-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
  color: #555555;
}

.page-slot-games-jackpot-secrets__responsibility-list .page-slot-games-jackpot-secrets__list-item {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-slot-games-jackpot-secrets__faq-section {
  padding: 80px 0;
  background-color: var(--f8best-background);
}

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

.page-slot-games-jackpot-secrets__faq-item {
  background-color: var(--f8best-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--f8best-border);
  overflow: hidden;
}

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

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

.page-slot-games-jackpot-secrets__faq-qtext {
  flex-grow: 1;
  pointer-events: none; /* Allow click on summary, not just text */
}

.page-slot-games-jackpot-secrets__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--f8best-gold);
  margin-left: 15px;
  pointer-events: none; /* Allow click on summary, not just toggle icon */
}

.page-slot-games-jackpot-secrets__faq-item[open] .page-slot-games-jackpot-secrets__faq-toggle {
  content: '−';
}

.page-slot-games-jackpot-secrets__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--f8best-text-secondary);
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-slot-games-jackpot-secrets__faq-item[open] .page-slot-games-jackpot-secrets__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Bottom CTA Section */
.page-slot-games-jackpot-secrets__cta-bottom-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games-jackpot-secrets__cta-bottom-section .page-slot-games-jackpot-secrets__section-title {
  color: #000000;
}

.page-slot-games-jackpot-secrets__cta-bottom-section .page-slot-games-jackpot-secrets__text-block {
  color: #333333;
  margin-bottom: 30px;
}

/* Dark/Light Background helpers for color contrast */
.page-slot-games-jackpot-secrets__dark-bg {
  color: var(--f8best-text-main);
  background-color: var(--f8best-background);
}

.page-slot-games-jackpot-secrets__light-bg {
  color: #333333;
  background-color: #ffffff;
}

.page-slot-games-jackpot-secrets__light-bg .page-slot-games-jackpot-secrets__section-title {
  color: #000000;
}

.page-slot-games-jackpot-secrets__light-bg .page-slot-games-jackpot-secrets__text-block {
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-secrets__section-title {
    font-size: 2em;
  }
  .page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
  }
}

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

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

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

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

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

  .page-slot-games-jackpot-secrets__btn-primary,
  .page-slot-games-jackpot-secrets__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-slot-games-jackpot-secrets__text-block {
    font-size: 1em;
  }

  .page-slot-games-jackpot-secrets__introduction-section,
  .page-slot-games-jackpot-secrets__f8best-advantages-section,
  .page-slot-games-jackpot-secrets__strategies-section,
  .page-slot-games-jackpot-secrets__jackpot-types-section,
  .page-slot-games-jackpot-secrets__responsible-gaming-section,
  .page-slot-games-jackpot-secrets__faq-section,
  .page-slot-games-jackpot-secrets__cta-bottom-section {
    padding: 40px 0;
  }

  .page-slot-games-jackpot-secrets__container {
    padding: 0 15px;
  }

  .page-slot-games-jackpot-secrets__features-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  /* Mobile responsive for images */
  .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__image-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Video responsive (if any, though none currently in HTML) */
  .page-slot-games-jackpot-secrets video,
  .page-slot-games-jackpot-secrets__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-jackpot-secrets__video-section,
  .page-slot-games-jackpot-secrets__video-container,
  .page-slot-games-jackpot-secrets__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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