.page-jackpot-winners {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-jackpot-winners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-jackpot-winners__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

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

.page-jackpot-winners__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over the image for visual flow */
  background-color: rgba(17, 39, 27, 0.85); /* Card B G with opacity */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
}

.page-jackpot-winners__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-jackpot-winners__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-jackpot-winners__btn-primary,
.page-jackpot-winners__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-jackpot-winners__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

.page-jackpot-winners__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button */
  border: 2px solid #2AD16F; /* Button */
}

.page-jackpot-winners__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-jackpot-winners__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-jackpot-winners__subtitle {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
}

.page-jackpot-winners__about-section,
.page-jackpot-winners__tips-section,
.page-jackpot-winners__why-choose-us {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-jackpot-winners__dark-section {
  padding: 80px 0;
  background-color: #11271B; /* Card B G */
}

.page-jackpot-winners__text-block {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-jackpot-winners__winners-grid,
.page-jackpot-winners__tips-grid,
.page-jackpot-winners__games-grid,
.page-jackpot-winners__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-jackpot-winners__winner-card,
.page-jackpot-winners__tip-card,
.page-jackpot-winners__game-card,
.page-jackpot-winners__feature-item {
  background-color: #11271B; /* Card B G */
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot-winners__winner-card:hover,
.page-jackpot-winners__tip-card:hover,
.page-jackpot-winners__game-card:hover,
.page-jackpot-winners__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-jackpot-winners__winner-image,
.page-jackpot-winners__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
  max-width: 100%; /* Ensure responsiveness */
  display: block;
}

.page-jackpot-winners__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure responsiveness */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-jackpot-winners__winner-name {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-jackpot-winners__winner-detail {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 5px;
}

.page-jackpot-winners__winner-detail strong {
  color: #F2C14E; /* Gold */
  font-weight: 700;
}

.page-jackpot-winners__winner-date {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-jackpot-winners__tip-title,
.page-jackpot-winners__game-title,
.page-jackpot-winners__feature-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-jackpot-winners__tip-text,
.page-jackpot-winners__game-description,
.page-jackpot-winners__feature-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-jackpot-winners__btn-small {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-jackpot-winners__btn-small:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-jackpot-winners__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-jackpot-winners__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-jackpot-winners__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E; /* Divider */
}

.page-jackpot-winners__faq-item[open] .page-jackpot-winners__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Divider */
}

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

.page-jackpot-winners__faq-question::marker {
  display: none;
}

.page-jackpot-winners__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-jackpot-winners__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-jackpot-winners__faq-answer p {
  margin-bottom: 10px;
}

.page-jackpot-winners__faq-answer p:last-child {
  margin-bottom: 0;
}

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

  .page-jackpot-winners__container {
    padding: 0 15px;
  }

  .page-jackpot-winners__hero-section {
    padding-bottom: 30px;
  }

  .page-jackpot-winners__hero-content {
    margin-top: -50px;
    padding: 20px;
    border-radius: 10px;
  }

  .page-jackpot-winners__main-title {
    font-size: 2rem;
  }

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

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

  .page-jackpot-winners__btn-primary,
  .page-jackpot-winners__btn-secondary,
  .page-jackpot-winners a[class*="button"],
  .page-jackpot-winners 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-winners__section-title {
    font-size: 1.8rem;
  }

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

  .page-jackpot-winners__about-section,
  .page-jackpot-winners__tips-section,
  .page-jackpot-winners__why-choose-us,
  .page-jackpot-winners__dark-section {
    padding: 40px 0;
  }

  .page-jackpot-winners__winners-grid,
  .page-jackpot-winners__tips-grid,
  .page-jackpot-winners__games-grid,
  .page-jackpot-winners__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-jackpot-winners__winner-card,
  .page-jackpot-winners__tip-card,
  .page-jackpot-winners__game-card,
  .page-jackpot-winners__feature-item {
    padding: 20px;
  }

  .page-jackpot-winners__winner-image,
  .page-jackpot-winners__game-image {
    height: 180px;
  }

  .page-jackpot-winners img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-jackpot-winners__section,
  .page-jackpot-winners__card,
  .page-jackpot-winners__container,
  .page-jackpot-winners__video-section,
  .page-jackpot-winners__video-container,
  .page-jackpot-winners__video-wrapper,
  .page-jackpot-winners__cta-buttons,
  .page-jackpot-winners__button-group,
  .page-jackpot-winners__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-jackpot-winners__video-section {
    padding-top: 10px !important;
  }

  .page-jackpot-winners video,
  .page-jackpot-winners__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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