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

/* Variables from custom color scheme */
:root {
  --page-slot-games-jackpot-bg: #08160F;
  --page-slot-games-jackpot-card-bg: #11271B;
  --page-slot-games-jackpot-text-main: #F2FFF6;
  --page-slot-games-jackpot-text-secondary: #A7D9B8;
  --page-slot-games-jackpot-border: #2E7A4E;
  --page-slot-games-jackpot-glow: #57E38D;
  --page-slot-games-jackpot-gold: #F2C14E;
  --page-slot-games-jackpot-divider: #1E3A2A;
  --page-slot-games-jackpot-deep-green: #0A4B2C;
  --page-slot-games-jackpot-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-slot-games-jackpot {
  background-color: var(--page-slot-games-jackpot-bg);
  color: var(--page-slot-games-jackpot-text-main); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-slot-games-jackpot__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-jackpot__dark-section {
  background-color: var(--page-slot-games-jackpot-deep-green);
  color: var(--page-slot-games-jackpot-text-main);
}

.page-slot-games-jackpot__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* H1 font size control */
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--page-slot-games-jackpot-text-main);
  line-height: 1.2;
}

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

/* Hero Section */
.page-slot-games-jackpot__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
}

.page-slot-games-jackpot__hero-image {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and content */
}

.page-slot-games-jackpot__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-jackpot__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 font size control */
  font-weight: 800;
  color: var(--page-slot-games-jackpot-gold);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games-jackpot__hero-description {
  font-size: 1.3em;
  color: var(--page-slot-games-jackpot-text-main);
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-slot-games-jackpot__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot__btn-primary {
  background: var(--page-slot-games-jackpot-btn-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

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

.page-slot-games-jackpot__btn-secondary {
  background-color: transparent;
  color: var(--page-slot-games-jackpot-glow);
  border: 2px solid var(--page-slot-games-jackpot-glow);
  margin-left: 20px;
}

.page-slot-games-jackpot__btn-secondary:hover {
  background-color: var(--page-slot-games-jackpot-glow);
  color: var(--page-slot-games-jackpot-bg);
  transform: translateY(-3px);
}

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

.page-slot-games-jackpot__card {
  background-color: var(--page-slot-games-jackpot-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--page-slot-games-jackpot-border);
  color: var(--page-slot-games-jackpot-text-main);
}

.page-slot-games-jackpot__card-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--page-slot-games-jackpot-gold);
}

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

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

.page-slot-games-jackpot__game-card {
  background-color: var(--page-slot-games-jackpot-card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--page-slot-games-jackpot-border);
  color: var(--page-slot-games-jackpot-text-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-jackpot__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-slot-games-jackpot__game-title {
  font-size: 1.4em;
  font-weight: 700;
  color: var(--page-slot-games-jackpot-gold);
  margin-bottom: 10px;
}

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

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

/* Benefits Section */
.page-slot-games-jackpot__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpot__benefit-item {
  background-color: var(--page-slot-games-jackpot-card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--page-slot-games-jackpot-border);
  color: var(--page-slot-games-jackpot-text-main);
}

.page-slot-games-jackpot__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-slot-games-jackpot__benefit-title {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--page-slot-games-jackpot-gold);
  margin-bottom: 10px;
}

.page-slot-games-jackpot__benefit-text {
  font-size: 0.9em;
  color: var(--page-slot-games-jackpot-text-secondary);
}

/* FAQ Section */
.page-slot-games-jackpot__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

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

.page-slot-games-jackpot__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--page-slot-games-jackpot-text-main);
  cursor: pointer;
  background-color: var(--page-slot-games-jackpot-deep-green);
  border-bottom: 1px solid var(--page-slot-games-jackpot-divider);
}

.page-slot-games-jackpot__faq-item[open] .page-slot-games-jackpot__faq-question {
  border-bottom: 1px solid var(--page-slot-games-jackpot-border);
}

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

.page-slot-games-jackpot__faq-question::marker {
  display: none;
}

.page-slot-games-jackpot__faq-qtext {
  flex-grow: 1;
  color: var(--page-slot-games-jackpot-text-main);
}

.page-slot-games-jackpot__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-slot-games-jackpot-glow);
}

.page-slot-games-jackpot__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--page-slot-games-jackpot-text-secondary);
  line-height: 1.7;
}

.page-slot-games-jackpot__faq-answer a {
  color: var(--page-slot-games-jackpot-glow);
  text-decoration: underline;
}

.page-slot-games-jackpot__faq-answer a:hover {
  color: var(--page-slot-games-jackpot-gold);
}

/* Final CTA Section */
.page-slot-games-jackpot__cta-final-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--page-slot-games-jackpot-deep-green);
}

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

/* Images general styles */
.page-slot-games-jackpot img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-slot-games-jackpot__image-content {
  margin-top: 40px;
  border: 1px solid var(--page-slot-games-jackpot-border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot__hero-section {
    min-height: 500px;
  }

  .page-slot-games-jackpot__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }

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

  .page-slot-games-jackpot__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-slot-games-jackpot__section-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 20px;
  }

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

  .page-slot-games-jackpot__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .page-slot-games-jackpot__main-title {
    font-size: clamp(2em, 7vw, 2.8em);
  }

  .page-slot-games-jackpot__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot__cta-button {
    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;
    margin-left: 0 !important; /* Remove margin for stacked buttons */
  }

  .page-slot-games-jackpot__btn-secondary {
    margin-top: 15px; /* Add spacing if stacked */
  }

  .page-slot-games-jackpot__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    padding: 0 15px;
  }

  .page-slot-games-jackpot__content-grid,
  .page-slot-games-jackpot__game-cards-grid,
  .page-slot-games-jackpot__strategy-grid,
  .page-slot-games-jackpot__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-jackpot__card,
  .page-slot-games-jackpot__game-card,
  .page-slot-games-jackpot__benefit-item {
    padding: 20px;
  }

  .page-slot-games-jackpot__game-image {
    height: 180px;
  }

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

  .page-slot-games-jackpot__hero-image {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .page-slot-games-jackpot__image-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-top: 20px;
  }

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

  .page-slot-games-jackpot__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95em;
  }

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

@media (max-width: 480px) {
  .page-slot-games-jackpot__main-title {
    font-size: clamp(1.8em, 8vw, 2.2em);
  }

  .page-slot-games-jackpot__hero-description {
    font-size: 0.9em;
  }

  .page-slot-games-jackpot__section-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
}