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

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

.page-slot-games-jackpot-games {
  background-color: var(--m98-background-color);
  color: var(--m98-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-slot-games-jackpot-games__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-slot-games-jackpot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-games-jackpot-games__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  color: var(--m98-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-slot-games-jackpot-games__hero-description {
  font-size: 1.1em;
  color: var(--m98-text-main);
  margin-bottom: 30px;
}

.page-slot-games-jackpot-games__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--m98-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
  border: none;
  cursor: pointer;
}

.page-slot-games-jackpot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games-jackpot-games__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--m98-divider-color);
}

.page-slot-games-jackpot-games__section:last-of-type {
  border-bottom: none;
}

.page-slot-games-jackpot-games__section-title {
  font-size: 2.5em;
  color: var(--m98-gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-slot-games-jackpot-games__text-block {
  font-size: 1.05em;
  color: var(--m98-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-jackpot-games__inline-link {
  color: var(--m98-secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot-games__inline-link:hover {
  color: var(--m98-primary-color);
}

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

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

.page-slot-games-jackpot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpot-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--m98-border-color);
}

.page-slot-games-jackpot-games__card-title {
  font-size: 1.8em;
  color: var(--m98-gold-color);
  margin-bottom: 15px;
}

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

.page-slot-games-jackpot-games__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--m98-secondary-color);
  border: 2px solid var(--m98-secondary-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-slot-games-jackpot-games__btn-secondary:hover {
  background: var(--m98-secondary-color);
  color: var(--m98-card-bg);
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.4);
}

.page-slot-games-jackpot-games__dark-section {
  background-color: var(--m98-deep-green);
}

.page-slot-games-jackpot-games__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-slot-games-jackpot-games__benefit-item {
  padding: 25px;
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent card bg */
  border-radius: 10px;
  border: 1px solid var(--m98-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-games__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-games__benefit-title {
  font-size: 1.5em;
  color: var(--m98-gold-color);
  margin-bottom: 10px;
}

.page-slot-games-jackpot-games__benefit-description {
  color: var(--m98-text-secondary);
  font-size: 0.95em;
}

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

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

.page-slot-games-jackpot-games__step-description {
  color: var(--m98-text-secondary);
  margin-bottom: 25px;
}

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

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

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

.page-slot-games-jackpot-games__strategy-description {
  color: var(--m98-text-secondary);
}

.page-slot-games-jackpot-games__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-slot-games-jackpot-games__faq-item {
  background-color: var(--m98-card-bg);
  border-radius: 10px;
  border: 1px solid var(--m98-border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-slot-games-jackpot-games__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--m98-deep-green);
  color: var(--m98-text-main);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

.page-slot-games-jackpot-games__faq-item summary:hover {
  background-color: var(--m98-primary-color);
}

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

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

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

.page-slot-games-jackpot-games__faq-answer {
  padding: 20px 25px;
  background-color: var(--m98-card-bg);
  color: var(--m98-text-secondary);
  font-size: 0.95em;
  border-top: 1px solid var(--m98-border-color);
}

.page-slot-games-jackpot-games__cta-bottom {
  text-align: center;
  padding: 80px 0;
}

.page-slot-games-jackpot-games__cta-content {
  max-width: 800px;
}

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

@media (max-width: 768px) {
  .page-slot-games-jackpot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-slot-games-jackpot-games__hero-image-wrapper {
    margin-bottom: 30px;
  }
  .page-slot-games-jackpot-games__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-slot-games-jackpot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games-jackpot-games__btn-primary {
    padding: 12px 25px;
    font-size: 0.95em;
  }

  .page-slot-games-jackpot-games__section {
    padding: 40px 0;
  }
  .page-slot-games-jackpot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games-jackpot-games__text-block {
    font-size: 0.95em;
  }

  .page-slot-games-jackpot-games__game-grid,
  .page-slot-games-jackpot-games__benefits-grid,
  .page-slot-games-jackpot-games__guide-steps,
  .page-slot-games-jackpot-games__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-jackpot-games__card-image {
    height: 180px;
  }
  .page-slot-games-jackpot-games__card-title {
    font-size: 1.5em;
  }
  .page-slot-games-jackpot-games__card-description {
    font-size: 0.9em;
  }

  .page-slot-games-jackpot-games__benefit-icon {
    width: 80px;
    height: 80px;
  }
  .page-slot-games-jackpot-games__benefit-title {
    font-size: 1.3em;
  }
  .page-slot-games-jackpot-games__benefit-description {
    font-size: 0.9em;
  }

  .page-slot-games-jackpot-games__step-title {
    font-size: 1.4em;
  }
  .page-slot-games-jackpot-games__step-description {
    font-size: 0.9em;
  }

  .page-slot-games-jackpot-games__strategy-title {
    font-size: 1.4em;
  }

  .page-slot-games-jackpot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-slot-games-jackpot-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.9em;
  }
  .page-slot-games-jackpot-games__faq-toggle {
    font-size: 1.3em;
  }

  .page-slot-games-jackpot-games__cta-bottom {
    padding: 60px 0;
  }

  /* Mobile responsive for images and containers */
  .page-slot-games-jackpot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-jackpot-games__container,
  .page-slot-games-jackpot-games__hero-section,
  .page-slot-games-jackpot-games__section,
  .page-slot-games-jackpot-games__card,
  .page-slot-games-jackpot-games__game-card,
  .page-slot-games-jackpot-games__benefit-item,
  .page-slot-games-jackpot-games__guide-step,
  .page-slot-games-jackpot-games__strategy-item,
  .page-slot-games-jackpot-games__faq-item,
  .page-slot-games-jackpot-games__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-slot-games-jackpot-games__btn-primary,
  .page-slot-games-jackpot-games__btn-secondary {
    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-games__cta-buttons,
  .page-slot-games-jackpot-games__button-group,
  .page-slot-games-jackpot-games__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-games__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}