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

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

.page-slot-games-jackpot-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  text-align: center;
  background: var(--page-card-bg);
}

.page-slot-games-jackpot-tips__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

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

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

.page-slot-games-jackpot-tips__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  color: var(--page-text-main);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-slot-games-jackpot-tips__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--page-text-secondary);
  margin-bottom: 30px;
}

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

.page-slot-games-jackpot-tips__btn-primary,
.page-slot-games-jackpot-tips__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games-jackpot-tips__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-slot-games-jackpot-tips__btn-primary:hover {
  box-shadow: 0 0 15px var(--page-glow);
  transform: translateY(-2px);
}

.page-slot-games-jackpot-tips__btn-secondary {
  background: var(--page-card-bg);
  color: var(--page-text-main);
  border: 2px solid var(--page-border);
}

.page-slot-games-jackpot-tips__btn-secondary:hover {
  background: var(--page-border);
  color: #ffffff;
}

.page-slot-games-jackpot-tips__section {
  padding: 80px 20px;
  text-align: center;
}

.page-slot-games-jackpot-tips__dark-section {
  background-color: var(--page-background);
  color: var(--page-text-main);
}

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

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

.page-slot-games-jackpot-tips__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--page-text-main);
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-jackpot-tips__text-block {
  font-size: 1.1em;
  color: var(--page-text-secondary);
  max-width: 900px;
  margin: 0 auto 30px auto;
}

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

.page-slot-games-jackpot-tips__card {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--page-text-main);
}

.page-slot-games-jackpot-tips__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--page-glow);
}

.page-slot-games-jackpot-tips__feature-icon,
.page-slot-games-jackpot-tips__strategy-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-games-jackpot-tips__card-title {
  font-size: 1.5em;
  color: var(--page-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-jackpot-tips__card-text {
  font-size: 1em;
  color: var(--page-text-secondary);
  flex-grow: 1;
}

.page-slot-games-jackpot-tips__tip-list,
.page-slot-games-jackpot-tips__promo-list,
.page-slot-games-jackpot-tips__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-slot-games-jackpot-tips__list-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--page-text-main);
  transition: transform 0.2s ease;
}

.page-slot-games-jackpot-tips__list-item:hover {
  transform: translateY(-3px);
}

.page-slot-games-jackpot-tips__list-title {
  font-size: 1.4em;
  color: var(--page-text-main);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-jackpot-tips__list-text {
  font-size: 1em;
  color: var(--page-text-secondary);
}

.page-slot-games-jackpot-tips__faq-section {
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-slot-games-jackpot-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-tips__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main);
}

.page-slot-games-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-text-main);
  background-color: var(--page-card-bg);
  border-bottom: 1px solid var(--page-divider);
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-tips__faq-item[open] > .page-slot-games-jackpot-tips__faq-question {
  background-color: var(--page-deep-green);
  border-bottom-color: transparent;
}

.page-slot-games-jackpot-tips__faq-question:hover {
  background-color: var(--page-deep-green);
}

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

.page-slot-games-jackpot-tips__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--page-text-secondary);
  text-align: left;
}

.page-slot-games-jackpot-tips__faq-item details > summary {
  list-style: none;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-tips__hero-section {
    padding: 40px 15px;
  }
  .page-slot-games-jackpot-tips__section {
    padding: 60px 15px;
  }
  .page-slot-games-jackpot-tips__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-slot-games-jackpot-tips__hero-description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }
  .page-slot-games-jackpot-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games-jackpot-tips__btn-primary,
  .page-slot-games-jackpot-tips__btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-tips__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-slot-games-jackpot-tips__section {
    padding: 40px 15px;
  }
  .page-slot-games-jackpot-tips__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-slot-games-jackpot-tips__text-block {
    font-size: 1em;
  }
  .page-slot-games-jackpot-tips__list-title {
    font-size: 1.2em;
  }
  .page-slot-games-jackpot-tips__list-text {
    font-size: 0.95em;
  }
  .page-slot-games-jackpot-tips__faq-question {
    font-size: 1.1em;
  }

  /* Image responsiveness */
  .page-slot-games-jackpot-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-jackpot-tips__section,
  .page-slot-games-jackpot-tips__card,
  .page-slot-games-jackpot-tips__container,
  .page-slot-games-jackpot-tips__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games-jackpot-tips__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-slot-games-jackpot-tips__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Button responsiveness */
  .page-slot-games-jackpot-tips__cta-button,
  .page-slot-games-jackpot-tips__btn-primary,
  .page-slot-games-jackpot-tips__btn-secondary,
  .page-slot-games-jackpot-tips a[class*="button"],
  .page-slot-games-jackpot-tips 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-slot-games-jackpot-tips__cta-buttons,
  .page-slot-games-jackpot-tips__button-group,
  .page-slot-games-jackpot-tips__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;
    overflow: hidden !important;
  }
  .page-slot-games-jackpot-tips__cta-buttons {
    flex-direction: column;
  }
}