/* style/jackpot-slots.css */

:root {
  --page-jackpot-slots-primary-color: #11A84E;
  --page-jackpot-slots-secondary-color: #22C768;
  --page-jackpot-slots-bg-color: #08160F;
  --page-jackpot-slots-card-bg: #11271B;
  --page-jackpot-slots-text-main: #F2FFF6;
  --page-jackpot-slots-text-secondary: #A7D9B8;
  --page-jackpot-slots-border-color: #2E7A4E;
  --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-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

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

.page-jackpot-slots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: var(--page-jackpot-slots-text-main);
  background-color: var(--page-jackpot-slots-deep-green);
}

.page-jackpot-slots__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-jackpot-slots__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-jackpot-slots__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--page-jackpot-slots-gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-jackpot-slots__hero-description {
  font-size: 1.2rem;
  color: var(--page-jackpot-slots-text-secondary);
  margin-bottom: 30px;
}

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

.page-jackpot-slots__btn-primary,
.page-jackpot-slots__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-jackpot-slots__btn-primary {
  background: var(--page-jackpot-slots-btn-gradient);
  color: var(--page-jackpot-slots-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-jackpot-slots__btn-secondary {
  background: transparent;
  color: var(--page-jackpot-slots-gold-color);
  border: 2px solid var(--page-jackpot-slots-gold-color);
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
}

.page-jackpot-slots__btn-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(242, 193, 78, 0.1);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-jackpot-slots__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--page-jackpot-slots-gold-color);
}

.page-jackpot-slots__intro-section,
.page-jackpot-slots__guide-section,
.page-jackpot-slots__promotions-section,
.page-jackpot-slots__support-payment-section {
  background-color: var(--page-jackpot-slots-bg-color);
  padding: 60px 0;
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__games-section,
.page-jackpot-slots__strategy-section,
.page-jackpot-slots__security-section,
.page-jackpot-slots__faq-section,
.page-jackpot-slots__conclusion-section {
  background-color: var(--page-jackpot-slots-deep-green);
  padding: 60px 0;
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--page-jackpot-slots-text-secondary);
}

.page-jackpot-slots__text-block strong {
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__game-grid,
.page-jackpot-slots__promo-cards,
.page-jackpot-slots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-jackpot-slots__game-card,
.page-jackpot-slots__promo-card,
.page-jackpot-slots__feature-item,
.page-jackpot-slots__card {
  background-color: var(--page-jackpot-slots-card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--page-jackpot-slots-text-main);
  border: 1px solid var(--page-jackpot-slots-border-color);
}

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

.page-jackpot-slots__game-title,
.page-jackpot-slots__promo-title,
.page-jackpot-slots__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--page-jackpot-slots-gold-color);
}

.page-jackpot-slots__game-description,
.page-jackpot-slots__promo-description,
.page-jackpot-slots__feature-description {
  font-size: 1rem;
  color: var(--page-jackpot-slots-text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-jackpot-slots__cta-center {
  text-align: center;
  margin-top: 20px;
}

.page-jackpot-slots__numbered-list,
.page-jackpot-slots__bullet-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-jackpot-slots__numbered-list li,
.page-jackpot-slots__bullet-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--page-jackpot-slots-text-secondary);
  position: relative;
  padding-left: 30px;
}

.page-jackpot-slots__numbered-list li strong,
.page-jackpot-slots__bullet-list li strong {
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__numbered-list li:before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  position: absolute;
  left: 0;
  color: var(--page-jackpot-slots-gold-color);
  font-weight: 700;
}

.page-jackpot-slots__bullet-list li:before {
  content: '•'; /* Unicode bullet point */
  position: absolute;
  left: 0;
  color: var(--page-jackpot-slots-gold-color);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
}

.page-jackpot-slots__promo-btn {
  margin-top: auto; /* Push button to bottom */
}

.page-jackpot-slots__icon-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-jackpot-slots__icon-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: var(--page-jackpot-slots-text-secondary);
  text-align: left;
  position: relative;
  padding-left: 0; /* Override list-item padding */
}

.page-jackpot-slots__icon-list li:before {
  content: none; /* Remove default list marker */
}

.page-jackpot-slots__icon-list img {
  
  
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--page-jackpot-slots-deep-green);
  padding: 8px;
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.3);
  display: block; /* Ensure no extra space below image */
}

.page-jackpot-slots__icon-list strong {
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__faq-list {
  margin-top: 30px;
}

.page-jackpot-slots__faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--page-jackpot-slots-border-color);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  background-color: var(--page-jackpot-slots-card-bg);
  color: var(--page-jackpot-slots-text-main);
}

.page-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--page-jackpot-slots-gold-color);
  background-color: var(--page-jackpot-slots-deep-green);
  border-bottom: 1px solid var(--page-jackpot-slots-border-color);
}

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

.page-jackpot-slots__faq-item summary {
  list-style: none;
}

.page-jackpot-slots__faq-toggle {
  font-size: 1.5rem;
  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: 15px 25px;
  font-size: 1rem;
  color: var(--page-jackpot-slots-text-secondary);
  border-top: 1px solid var(--page-jackpot-slots-divider-color);
}

.page-jackpot-slots__faq-answer p {
  margin: 0;
  color: var(--page-jackpot-slots-text-secondary);
}

.page-jackpot-slots__mobile-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: var(--page-jackpot-slots-deep-green);
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform: translateY(100%); /* Hidden by default */
  transition: transform 0.3s ease-in-out;
}

.page-jackpot-slots__mobile-fixed-cta.active {
  transform: translateY(0); /* Show when active */
}

.page-jackpot-slots__mobile-btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  margin: 0 5px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--page-jackpot-slots-text-main);
  background: var(--page-jackpot-slots-btn-gradient);
  box-shadow: 0 2px 8px rgba(42, 209, 111, 0.3);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 48%; /* Adjust for two buttons with gap */
}

.page-jackpot-slots__mobile-btn--login {
  background: var(--page-jackpot-slots-gold-color);
  color: var(--page-jackpot-slots-deep-green);
  box-shadow: 0 2px 8px rgba(242, 193, 78, 0.3);
}

/* --- Responsive Styles --- */

/* All images basic responsive */
.page-jackpot-slots img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile-specific overrides */
@media (max-width: 768px) {
  .page-jackpot-slots {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-jackpot-slots__hero-section {
    padding-bottom: 40px;
  }

  .page-jackpot-slots__main-title {
    font-size: 2.2rem;
  }

  .page-jackpot-slots__hero-description {
    font-size: 1rem;
  }

  .page-jackpot-slots__section-title {
    font-size: 1.8rem;
  }

  .page-jackpot-slots__intro-section,
  .page-jackpot-slots__games-section,
  .page-jackpot-slots__guide-section,
  .page-jackpot-slots__strategy-section,
  .page-jackpot-slots__promotions-section,
  .page-jackpot-slots__security-section,
  .page-jackpot-slots__support-payment-section,
  .page-jackpot-slots__faq-section,
  .page-jackpot-slots__conclusion-section {
    padding: 40px 0;
  }

  .page-jackpot-slots__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-jackpot-slots__btn-primary,
  .page-jackpot-slots__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-jackpot-slots__game-grid,
  .page-jackpot-slots__promo-cards,
  .page-jackpot-slots__features-grid,
  .page-jackpot-slots__icon-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-jackpot-slots__card {
    padding: 20px;
  }

  .page-jackpot-slots__game-title,
  .page-jackpot-slots__promo-title,
  .page-jackpot-slots__feature-title {
    font-size: 1.3rem;
  }

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

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

  /* Mobile images, videos, buttons force full width */
  .page-jackpot-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-jackpot-slots__section,
  .page-jackpot-slots__card,
  .page-jackpot-slots__container,
  .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;
  }

  .page-jackpot-slots__mobile-fixed-cta {
    padding: 8px 0;
    /* Ensure buttons inside also adapt */
    flex-wrap: wrap;
    gap: 10px;
  }

  .page-jackpot-slots__mobile-btn {
    font-size: 0.95rem;
    padding: 10px 5px;
    max-width: calc(50% - 10px); /* Account for gap */
  }

  /* Ensure content area images are at least 200px if possible, but max-width: 100% takes precedence */
  .page-jackpot-slots__game-image, 
  .page-jackpot-slots__promo-image {
    min-width: 200px; /* This is a soft recommendation, overridden by max-width: 100% */
    min-height: 200px;
    object-fit: cover;
  }

  .page-jackpot-slots__icon-list img {
    
    
  }

  .page-jackpot-slots__icon-list li {
    font-size: 1rem;
  }

  .page-jackpot-slots__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}