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

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

/* Base styles for the page content */
.page-slot-games-jackpot-secrets {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-slot-games-jackpot-secrets-text-main); /* Light text for dark body background */
  background-color: var(--page-slot-games-jackpot-secrets-background); /* Dark 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__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-jackpot-secrets__dark-bg {
  background-color: var(--page-slot-games-jackpot-secrets-background);
  color: var(--page-slot-games-jackpot-secrets-text-main);
}

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

.page-slot-games-jackpot-secrets__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--page-slot-games-jackpot-secrets-gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page-slot-games-jackpot-secrets__section-title--dark {
  color: var(--page-slot-games-jackpot-secrets-deep-green);
}

.page-slot-games-jackpot-secrets__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--page-slot-games-jackpot-secrets-text-secondary);
}

.page-slot-games-jackpot-secrets__text-block--dark {
  color: #555555;
}

/* Hero Section */
.page-slot-games-jackpot-secrets__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: 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: 600px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games-jackpot-secrets__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  max-width: 900px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-secrets__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 900;
  color: var(--page-slot-games-jackpot-secrets-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

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

.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;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-secrets__btn-primary {
  background: var(--page-slot-games-jackpot-secrets-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-secrets__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-slot-games-jackpot-secrets__btn-secondary {
  background: #ffffff;
  color: var(--page-slot-games-jackpot-secrets-primary-color);
  border: 2px solid var(--page-slot-games-jackpot-secrets-primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-secrets__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--page-slot-games-jackpot-secrets-primary-color);
  color: #ffffff;
}

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

/* Card Styles */
.page-slot-games-jackpot-secrets__card {
  background-color: var(--page-slot-games-jackpot-secrets-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.page-slot-games-jackpot-secrets__card-bg {
  background-color: var(--page-slot-games-jackpot-secrets-card-bg);
  color: var(--page-slot-games-jackpot-secrets-text-main);
}

.page-slot-games-jackpot-secrets__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-slot-games-jackpot-secrets__card-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-slot-games-jackpot-secrets-gold);
  line-height: 1.3;
}

.page-slot-games-jackpot-secrets__card-text {
  font-size: 1em;
  color: var(--page-slot-games-jackpot-secrets-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games-jackpot-secrets__btn-text {
  color: var(--page-slot-games-jackpot-secrets-gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-slot-games-jackpot-secrets__btn-text:hover {
  color: var(--page-slot-games-jackpot-secrets-secondary-color);
}

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

.page-slot-games-jackpot-secrets__content-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}

.page-slot-games-jackpot-secrets__content-card-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-slot-games-jackpot-secrets-primary-color);
  line-height: 1.3;
}

.page-slot-games-jackpot-secrets__content-card-title--dark {
  color: var(--page-slot-games-jackpot-secrets-deep-green);
}

.page-slot-games-jackpot-secrets__content-card-text {
  font-size: 1em;
  color: #555555;
}

.page-slot-games-jackpot-secrets__content-card-text--dark {
  color: #555555;
}

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

.page-slot-games-jackpot-secrets__promo-card {
  background-color: var(--page-slot-games-jackpot-secrets-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-slot-games-jackpot-secrets__promo-image {
  width: 100%;
  max-width: 400px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-slot-games-jackpot-secrets__promo-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-slot-games-jackpot-secrets-gold);
  line-height: 1.3;
}

.page-slot-games-jackpot-secrets__promo-text {
  font-size: 1em;
  color: var(--page-slot-games-jackpot-secrets-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-slot-games-jackpot-secrets__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: 100%;
  box-sizing: border-box;
}

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

.page-slot-games-jackpot-secrets__step-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-slot-games-jackpot-secrets-primary-color);
  line-height: 1.3;
}

.page-slot-games-jackpot-secrets__step-title--dark {
  color: var(--page-slot-games-jackpot-secrets-deep-green);
}

.page-slot-games-jackpot-secrets__step-text {
  font-size: 1em;
  color: #555555;
}

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

.page-slot-games-jackpot-secrets__btn-secondary--dark-text {
  background: #ffffff;
  color: var(--page-slot-games-jackpot-secrets-primary-color);
  border: 2px solid var(--page-slot-games-jackpot-secrets-primary-color);
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-secrets__btn-secondary--dark-text:hover {
  background-color: var(--page-slot-games-jackpot-secrets-primary-color);
  color: #ffffff;
}

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

.page-slot-games-jackpot-secrets__info-card {
  background-color: var(--page-slot-games-jackpot-secrets-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.page-slot-games-jackpot-secrets__info-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-slot-games-jackpot-secrets__info-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-slot-games-jackpot-secrets-gold);
  line-height: 1.3;
}

.page-slot-games-jackpot-secrets__info-text {
  font-size: 1em;
  color: var(--page-slot-games-jackpot-secrets-text-secondary);
  margin-bottom: 20px;
}

/* FAQ Section */
.page-slot-games-jackpot-secrets__faq-section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-jackpot-secrets__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slot-games-jackpot-secrets__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

.page-slot-games-jackpot-secrets__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  margin-left: 15px;
  color: var(--page-slot-games-jackpot-secrets-primary-color);
}

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

.page-slot-games-jackpot-secrets__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #f0f0f0;
}

/* Final CTA */
.page-slot-games-jackpot-secrets__final-cta {
  padding: 80px 20px;
}

.page-slot-games-jackpot-secrets__btn-primary--large {
  font-size: 1.3em;
  padding: 18px 40px;
}

/* Copyright */
.page-slot-games-jackpot-secrets__copyright {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: var(--page-slot-games-jackpot-secrets-text-secondary);
  background-color: var(--page-slot-games-jackpot-secrets-deep-green);
  border-top: 1px solid var(--page-slot-games-jackpot-secrets-divider);
}

/* Global image styles */
.page-slot-games-jackpot-secrets img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-secrets__hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-secrets__section-title {
    font-size: 2em;
  }

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

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

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

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

  .page-slot-games-jackpot-secrets__btn-primary,
  .page-slot-games-jackpot-secrets__btn-secondary,
  .page-slot-games-jackpot-secrets__btn-secondary--dark-text,
  .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;
    padding-right: 15px;
  }

  .page-slot-games-jackpot-secrets__cta-buttons,
  .page-slot-games-jackpot-secrets__button-group,
  .page-slot-games-jackpot-secrets__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

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

  .page-slot-games-jackpot-secrets__grid-2-cols,
  .page-slot-games-jackpot-secrets__content-grid,
  .page-slot-games-jackpot-secrets__promo-grid,
  .page-slot-games-jackpot-secrets__steps-grid,
  .page-slot-games-jackpot-secrets__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-jackpot-secrets__card,
  .page-slot-games-jackpot-secrets__content-card,
  .page-slot-games-jackpot-secrets__promo-card,
  .page-slot-games-jackpot-secrets__step-card,
  .page-slot-games-jackpot-secrets__info-card,
  .page-slot-games-jackpot-secrets__section,
  .page-slot-games-jackpot-secrets__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-jackpot-secrets img,
  .page-slot-games-jackpot-secrets__card-image,
  .page-slot-games-jackpot-secrets__promo-image,
  .page-slot-games-jackpot-secrets__info-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-slot-games-jackpot-secrets__info-icon {
    width: 100% !important;
    height: auto !important;
    max-height: 150px !important; /* Adjust for smaller icons */
    object-fit: contain !important;
  }

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

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

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

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

  .page-slot-games-jackpot-secrets__final-cta {
    padding: 60px 15px;
  }
}