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

.page-slot-games-jackpot-guide {
  font-family: Arial, sans-serif;
  color: var(--kimsport-text-main); /* Default text color for main content */
  background-color: var(--kimsport-background); /* Overall page background */
}

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

.page-slot-games-jackpot-guide__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;
  background-color: var(--kimsport-deep-green);
  overflow: hidden;
}

.page-slot-games-jackpot-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games-jackpot-guide__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
  margin-top: -100px; /* Overlap slightly for visual effect, but not over image */
  background-color: rgba(10, 75, 44, 0.8); /* Deep Green with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpot-guide__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--kimsport-text-main);
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--kimsport-glow);
}

.page-slot-games-jackpot-guide__hero-description {
  font-size: 1.15em;
  line-height: 1.6;
  color: var(--kimsport-text-secondary);
  margin-bottom: 30px;
}

.page-slot-games-jackpot-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-slot-games-jackpot-guide__btn-primary {
  background: var(--kimsport-button-gradient);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games-jackpot-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

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

.page-slot-games-jackpot-guide__btn-secondary:hover {
  background-color: rgba(17, 168, 78, 0.1);
  color: var(--kimsport-text-main);
  border-color: var(--kimsport-secondary);
  transform: translateY(-2px);
}

.page-slot-games-jackpot-guide__section-title {
  font-size: 2.5em;
  color: var(--kimsport-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games-jackpot-guide__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--kimsport-gold);
  border-radius: 2px;
}

.page-slot-games-jackpot-guide__introduction-section,
.page-slot-games-jackpot-guide__games-section,
.page-slot-games-jackpot-guide__strategy-section,
.page-slot-games-jackpot-guide__tips-section,
.page-slot-games-jackpot-guide__cta-section,
.page-slot-games-jackpot-guide__faq-section {
  padding: 80px 0;
}

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

.page-slot-games-jackpot-guide__card-bg {
  background-color: var(--kimsport-card-bg);
  color: var(--kimsport-text-main);
}

.page-slot-games-jackpot-guide__content-block {
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--kimsport-text-secondary);
  margin-bottom: 30px;
  text-align: justify;
}

.page-slot-games-jackpot-guide__content-block p {
  margin-bottom: 15px;
}

.page-slot-games-jackpot-guide__content-block strong {
  color: var(--kimsport-text-main);
}

.page-slot-games-jackpot-guide__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-guide__grid-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-guide__strategy-list,
.page-slot-games-jackpot-guide__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slot-games-jackpot-guide__strategy-list li,
.page-slot-games-jackpot-guide__tips-list li {
  background-color: var(--kimsport-deep-green);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 60px;
  color: var(--kimsport-text-secondary);
}

.page-slot-games-jackpot-guide__strategy-list li::before,
.page-slot-games-jackpot-guide__tips-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: var(--kimsport-glow);
  font-weight: bold;
}

.page-slot-games-jackpot-guide__security-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpot-guide__cta-description {
  text-align: center;
  font-size: 1.2em;
  color: var(--kimsport-text-secondary);
  margin-bottom: 40px;
}

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

.page-slot-games-jackpot-guide__faq-list {
  margin-top: 40px;
}

.page-slot-games-jackpot-guide__faq-item {
  background-color: var(--kimsport-deep-green);
  border: 1px solid var(--kimsport-divider);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-jackpot-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--kimsport-text-main);
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-slot-games-jackpot-guide__faq-question:hover {
  background-color: var(--kimsport-divider);
}

.page-slot-games-jackpot-guide__faq-toggle {
  font-size: 1.5em;
  color: var(--kimsport-glow);
  transition: transform 0.3s ease;
}

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

.page-slot-games-jackpot-guide__faq-answer {
  padding: 0 20px 20px 20px;
  color: var(--kimsport-text-secondary);
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-guide__main-title {
    font-size: 2.8em;
  }

  .page-slot-games-jackpot-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-jackpot-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games-jackpot-guide__hero-content {
    padding: 30px 15px;
    margin-top: -80px;
  }

  .page-slot-games-jackpot-guide__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-slot-games-jackpot-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-slot-games-jackpot-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important; /* Reset margin for secondary button */
  }

  .page-slot-games-jackpot-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-slot-games-jackpot-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot-guide__introduction-section,
  .page-slot-games-jackpot-guide__games-section,
  .page-slot-games-jackpot-guide__mechanism-section,
  .page-slot-games-jackpot-guide__strategy-section,
  .page-slot-games-jackpot-guide__tips-section,
  .page-slot-games-jackpot-guide__safety-section,
  .page-slot-games-jackpot-guide__cta-section,
  .page-slot-games-jackpot-guide__faq-section {
    padding: 50px 0;
  }

  .page-slot-games-jackpot-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-jackpot-guide__grid-image,
  .page-slot-games-jackpot-guide__security-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-slot-games-jackpot-guide__image-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-slot-games-jackpot-guide__strategy-list li,
  .page-slot-games-jackpot-guide__tips-list li {
    padding: 15px 15px 15px 50px;
  }

  .page-slot-games-jackpot-guide__strategy-list li::before,
  .page-slot-games-jackpot-guide__tips-list li::before {
    left: 15px;
  }

  .page-slot-games-jackpot-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-slot-games-jackpot-guide__faq-answer {
    padding: 0 15px 15px 15px;
  }

  .page-slot-games-jackpot-guide__hero-image {
    width: 100%; /* Ensure hero image takes full width on mobile */
    height: auto;
  }
  .page-slot-games-jackpot-guide__hero-image-wrapper {
    max-height: 400px; /* Adjust max height for mobile hero */
  }
}

@media (max-width: 480px) {
  .page-slot-games-jackpot-guide__main-title {
    font-size: 1.6em;
  }

  .page-slot-games-jackpot-guide__section-title {
    font-size: 1.5em;
  }
}