/* style/jackpot-slots.css */

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

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

.page-jackpot-slots p,
.page-jackpot-slots li {
  color: var(--page-jackpot-slots-text-secondary);
}

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

.page-jackpot-slots__light-bg {
  background-color: #ffffff; /* Using a clean white for contrast as per rules for light background */
  color: #333333; /* Dark text for light background */
}

.page-jackpot-slots__light-bg p,
.page-jackpot-slots__light-bg li {
  color: #555555;
}

.page-jackpot-slots__card {
  background: var(--page-jackpot-slots-card-bg);
  color: var(--page-jackpot-slots-text-main);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-jackpot-slots-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-slots__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-jackpot-slots__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-jackpot-slots__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-jackpot-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.page-jackpot-slots__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-jackpot-slots__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--page-jackpot-slots-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-jackpot-slots__hero-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;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
}

.page-jackpot-slots__btn-primary {
  background: var(--page-jackpot-slots-button-gradient);
  color: #ffffff;
  border: none;
}

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

.page-jackpot-slots__btn-secondary {
  background: none;
  color: var(--page-jackpot-slots-primary);
  border: 2px solid var(--page-jackpot-slots-primary);
}

.page-jackpot-slots__btn-secondary:hover {
  background: var(--page-jackpot-slots-primary);
  color: #ffffff;
  transform: translateY(-3px);
}

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

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

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

.page-jackpot-slots__light-bg .page-jackpot-slots__section-title {
  color: #333333;
}

.page-jackpot-slots__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

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

.page-jackpot-slots__feature-item,
.page-jackpot-slots__game-card,
.page-jackpot-slots__promo-card,
.page-jackpot-slots__support-card,
.page-jackpot-slots__payment-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-jackpot-slots__feature-icon,
.page-jackpot-slots__game-image,
.page-jackpot-slots__promo-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

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

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

.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-item {
  text-align: center;
}

.page-jackpot-slots__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--page-jackpot-slots-primary);
  background-color: var(--page-jackpot-slots-deep-green);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--page-jackpot-slots-glow);
}

.page-jackpot-slots__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--page-jackpot-slots-gold);
  margin-bottom: 10px;
}

.page-jackpot-slots__step-description {
  font-size: 1rem;
  color: var(--page-jackpot-slots-text-secondary);
}

.page-jackpot-slots__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-jackpot-slots__strategy-list li {
  background: var(--page-jackpot-slots-card-bg);
  border: 1px solid var(--page-jackpot-slots-border);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--page-jackpot-slots-text-secondary);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.page-jackpot-slots__security-features {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: center;
}

.page-jackpot-slots__security-features p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--page-jackpot-slots-gold);
  margin-bottom: 20px;
}

.page-jackpot-slots__security-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block; /* Center the list */
}

.page-jackpot-slots__security-features li {
  font-size: 1.1rem;
  color: var(--page-jackpot-slots-text-secondary);
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-jackpot-slots__security-features li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--page-jackpot-slots-glow);
}

.page-jackpot-slots__support-card .page-jackpot-slots__btn-secondary,
.page-jackpot-slots__payment-card .page-jackpot-slots__btn-secondary {
  margin-top: 20px;
}

.page-jackpot-slots__faq-section {
  padding-bottom: 80px;
}

.page-jackpot-slots__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-jackpot-slots__faq-item {
  background: var(--page-jackpot-slots-card-bg);
  border: 1px solid var(--page-jackpot-slots-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-jackpot-slots__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--page-jackpot-slots-text-main);
  cursor: pointer;
  list-style: none;
  user-select: none;
  position: relative;
}

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

.page-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-jackpot-slots__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-jackpot-slots__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-jackpot-slots-glow);
}

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

.page-jackpot-slots__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--page-jackpot-slots-text-secondary);
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-jackpot-slots__hero-section {
    padding: 40px 15px;
  }

  .page-jackpot-slots__hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

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

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

  .page-jackpot-slots__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-jackpot-slots__section-intro {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-jackpot-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-jackpot-slots video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-jackpot-slots__section,
  .page-jackpot-slots__card,
  .page-jackpot-slots__container,
  .page-jackpot-slots__video-section,
  .page-jackpot-slots__video-container,
  .page-jackpot-slots__video-wrapper,
  .page-jackpot-slots__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-jackpot-slots__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

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

  .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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-jackpot-slots__features-grid,
  .page-jackpot-slots__game-grid,
  .page-jackpot-slots__promos-grid,
  .page-jackpot-slots__steps-grid,
  .page-jackpot-slots__support-payment-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-jackpot-slots__faq-toggle {
    font-size: 1.5rem;
  }

  .page-jackpot-slots__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

/* Content area images minimum size enforcement */
.page-jackpot-slots__features-grid img,
.page-jackpot-slots__game-grid img,
.page-jackpot-slots__promos-grid img,
.page-jackpot-slots__step-item img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Ensure images in cards are large */
.page-jackpot-slots__card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 200px; /* Enforce minimum height for card images */
}

/* CSS for color contrast fix if needed */
.page-jackpot-slots__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-jackpot-slots__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}