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

.page-jackpot-slots {
  background-color: var(--page-jackpot-slots-background);
  color: var(--page-jackpot-slots-text-main);
  font-family: Arial, sans-serif;
}

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

.page-jackpot-slots__section {
  padding: 60px 0;
  text-align: center;
}

.page-jackpot-slots__dark-bg {
  background-color: var(--page-jackpot-slots-deep-green);
}

.page-jackpot-slots__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  margin-bottom: 30px;
  color: var(--page-jackpot-slots-gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-jackpot-slots__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  margin-bottom: 20px;
  color: var(--page-jackpot-slots-gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-jackpot-slots__description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--page-jackpot-slots-text-secondary);
}

.page-jackpot-slots__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--page-jackpot-slots-text-main);
  text-align: left;
}

.page-jackpot-slots__highlight-text {
  color: var(--page-jackpot-slots-gold-color);
  font-weight: bold;
}

/* Buttons */
.page-jackpot-slots__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-jackpot-slots__btn-primary,
.page-jackpot-slots__btn-secondary,
.page-jackpot-slots__card-button,
.page-jackpot-slots a[class*="button"],
.page-jackpot-slots a[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-jackpot-slots__btn-primary {
  background: var(--page-jackpot-slots-button-gradient);
  color: var(--page-jackpot-slots-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-jackpot-slots__btn-secondary {
  background: none;
  color: var(--page-jackpot-slots-gold-color);
  border: 2px solid var(--page-jackpot-slots-gold-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-jackpot-slots__btn-secondary:hover {
  background-color: var(--page-jackpot-slots-gold-color);
  color: var(--page-jackpot-slots-background);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-jackpot-slots__card-button {
  background: var(--page-jackpot-slots-button-gradient);
  color: var(--page-jackpot-slots-text-main);
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

.page-jackpot-slots__card-button:hover {
  opacity: 0.9;
}

.page-jackpot-slots__inline-link {
  color: var(--page-jackpot-slots-gold-color);
  text-decoration: none;
  font-weight: bold;
}

.page-jackpot-slots__inline-link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-jackpot-slots__hero-section {
  position: relative;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-jackpot-slots__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-jackpot-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-jackpot-slots__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  box-sizing: border-box;
}

/* Card Styles */
.page-jackpot-slots__card {
  background-color: var(--page-jackpot-slots-card-bg);
  border: 1px solid var(--page-jackpot-slots-border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-jackpot-slots__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
}

.page-jackpot-slots__card-title {
  font-size: 1.5em;
  color: var(--page-jackpot-slots-gold-color);
  margin-bottom: 10px;
}

.page-jackpot-slots__card-text {
  font-size: 1em;
  color: var(--page-jackpot-slots-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* Game Showcase */
.page-jackpot-slots__games-showcase .page-jackpot-slots__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* How to Play */
.page-jackpot-slots__how-to-play .page-jackpot-slots__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-jackpot-slots__step-card .page-jackpot-slots__card-title {
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__step-icon {
  background-color: var(--page-jackpot-slots-primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px var(--page-jackpot-slots-glow-color);
}

.page-jackpot-slots__step-number {
  font-size: 2em;
  font-weight: bold;
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__payment-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Strategy Section */
.page-jackpot-slots__strategy-list {
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0 auto;
  list-style: none;
  padding: 0;
}

.page-jackpot-slots__strategy-list li {
  background-color: var(--page-jackpot-slots-card-bg);
  border: 1px solid var(--page-jackpot-slots-border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--page-jackpot-slots-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-jackpot-slots__strategy-list li strong {
  color: var(--page-jackpot-slots-gold-color);
}

/* Promotions Section */
.page-jackpot-slots__promotions-section .page-jackpot-slots__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Features Section */
.page-jackpot-slots__features-section .page-jackpot-slots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-jackpot-slots__feature-item .page-jackpot-slots__card-title {
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__mobile-app-display {
  margin-top: 50px;
}

.page-jackpot-slots__mobile-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-jackpot-slots__faq-item {
  background-color: var(--page-jackpot-slots-card-bg);
  border: 1px solid var(--page-jackpot-slots-border-color);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-jackpot-slots-text-main);
  cursor: pointer;
  background-color: var(--page-jackpot-slots-deep-green);
  border-bottom: 1px solid var(--page-jackpot-slots-divider-color);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-jackpot-slots__faq-question::-webkit-details-marker {
  display: none;
}

.page-jackpot-slots__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-jackpot-slots-gold-color);
  transition: transform 0.3s ease;
}

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

.page-jackpot-slots__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--page-jackpot-slots-text-secondary);
  text-align: left;
}

/* Bottom CTA */
.page-jackpot-slots__cta-bottom {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--page-jackpot-slots-deep-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-jackpot-slots__hero-section {
    min-height: 400px;
  }

  .page-jackpot-slots__hero-image-wrapper {
    max-height: 450px;
  }

  .page-jackpot-slots__section-title {
    font-size: 2.2em;
  }

  .page-jackpot-slots__main-title {
    font-size: 3em;
  }

  .page-jackpot-slots__description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-jackpot-slots__container,
  .page-jackpot-slots__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-jackpot-slots__section {
    padding: 40px 0;
  }

  .page-jackpot-slots__hero-section {
    padding: 40px 0;
    padding-top: 10px !important; /* body handles --header-offset */
    min-height: 350px;
  }

  .page-jackpot-slots__hero-image-wrapper {
    max-height: 300px;
  }

  .page-jackpot-slots__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-jackpot-slots__description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-jackpot-slots__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  /* Images responsive */
  .page-jackpot-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-jackpot-slots__image-block,
  .page-jackpot-slots__hero-image-wrapper,
  .page-jackpot-slots__game-grid,
  .page-jackpot-slots__steps-grid,
  .page-jackpot-slots__promotion-grid,
  .page-jackpot-slots__features-grid,
  .page-jackpot-slots__cta-buttons,
  .page-jackpot-slots__button-group,
  .page-jackpot-slots__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-jackpot-slots__cta-button,
  .page-jackpot-slots__btn-primary,
  .page-jackpot-slots__btn-secondary,
  .page-jackpot-slots a[class*="button"],
  .page-jackpot-slots a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    margin-bottom: 10px; /* Add margin between stacked buttons */
  }

  .page-jackpot-slots__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-jackpot-slots__strategy-list {
    padding: 0 10px;
  }

  .page-jackpot-slots__strategy-list li {
    padding: 12px 15px;
    font-size: 1em;
  }

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

  .page-jackpot-slots__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-jackpot-slots__main-title {
    font-size: 1.8em;
  }

  .page-jackpot-slots__section-title {
    font-size: 1.5em;
  }

  .page-jackpot-slots__hero-section {
    min-height: 300px;
  }

  .page-jackpot-slots__hero-image-wrapper {
    max-height: 250px;
  }

  .page-jackpot-slots__card-title {
    font-size: 1.3em;
  }

  .page-jackpot-slots__card-text {
    font-size: 0.9em;
  }
}