/* style/player-stories-jackpot-winner.css */

/* Variables */
:root {
  --page-player-stories-jackpot-winner-primary-color: #FFD700; /* Gold */
  --page-player-stories-jackpot-winner-secondary-color: #8B0000; /* Deep Red */
  --page-player-stories-jackpot-winner-dark-background: #1a1a1a; /* Dark Grey/Black */
  --page-player-stories-jackpot-winner-light-text: #FFFFFF; /* White */
  --page-player-stories-jackpot-winner-dark-text: #333333; /* Dark Grey */
  --page-player-stories-jackpot-winner-accent-blue: #00BFFF; /* Deep Sky Blue for highlights */
  --page-player-stories-jackpot-winner-accent-green: #32CD32; /* Lime Green for highlights */
}

.page-player-stories-jackpot-winner {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-player-stories-jackpot-winner-light-text); /* Default text color for dark backgrounds */
  background-color: var(--page-player-stories-jackpot-winner-dark-background);
}

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

.page-player-stories-jackpot-winner__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--page-player-stories-jackpot-winner-primary-color), var(--page-player-stories-jackpot-winner-secondary-color));
  padding: 80px 20px;
  color: var(--page-player-stories-jackpot-winner-light-text);
  position: relative;
  overflow: hidden;
}

.page-player-stories-jackpot-winner__hero-content {
  z-index: 2;
  max-width: 800px;
}

.page-player-stories-jackpot-winner__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-player-stories-jackpot-winner-light-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-player-stories-jackpot-winner__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: var(--page-player-stories-jackpot-winner-light-text);
}

.page-player-stories-jackpot-winner__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-player-stories-jackpot-winner__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-player-stories-jackpot-winner__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  margin: 10px;
}

.page-player-stories-jackpot-winner__btn--primary {
  background-color: var(--page-player-stories-jackpot-winner-primary-color);
  color: var(--page-player-stories-jackpot-winner-dark-text);
  border: 2px solid var(--page-player-stories-jackpot-winner-primary-color);
}

.page-player-stories-jackpot-winner__btn--primary:hover {
  background-color: darken(var(--page-player-stories-jackpot-winner-primary-color), 10%);
  transform: translateY(-3px);
}

.page-player-stories-jackpot-winner__btn--secondary {
  background-color: transparent;
  color: var(--page-player-stories-jackpot-winner-primary-color);
  border: 2px solid var(--page-player-stories-jackpot-winner-primary-color);
}

.page-player-stories-jackpot-winner__btn--secondary:hover {
  background-color: var(--page-player-stories-jackpot-winner-primary-color);
  color: var(--page-player-stories-jackpot-winner-dark-text);
  transform: translateY(-3px);
}

.page-player-stories-jackpot-winner__btn--download {
  background-color: var(--page-player-stories-jackpot-winner-accent-blue);
  color: var(--page-player-stories-jackpot-winner-light-text);
  border: 2px solid var(--page-player-stories-jackpot-winner-accent-blue);
}

.page-player-stories-jackpot-winner__btn--download:hover {
  background-color: darken(var(--page-player-stories-jackpot-winner-accent-blue), 10%);
  transform: translateY(-3px);
}

.page-player-stories-jackpot-winner__intro,
.page-player-stories-jackpot-winner__featured-story,
.page-player-stories-jackpot-winner__more-stories,
.page-player-stories-jackpot-winner__why-88king,
.page-player-stories-jackpot-winner__tips,
.page-player-stories-jackpot-winner__testimonials,
.page-player-stories-jackpot-winner__faq,
.page-player-stories-jackpot-winner__cta-final {
  padding: 60px 0;
}

.page-player-stories-jackpot-winner__intro {
  background-color: #222;
}

.page-player-stories-jackpot-winner__section-title {
  font-size: 2.8em;
  color: var(--page-player-stories-jackpot-winner-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-player-stories-jackpot-winner__section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-player-stories-jackpot-winner-secondary-color);
  border-radius: 2px;
}

.page-player-stories-jackpot-winner__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-player-stories-jackpot-winner-light-text);
  text-align: justify;
}

.page-player-stories-jackpot-winner__featured-story {
  background-color: #2a2a2a;
}

.page-player-stories-jackpot-winner__story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-player-stories-jackpot-winner__story-text {
  flex: 2;
  min-width: 300px;
}

.page-player-stories-jackpot-winner__story-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-player-stories-jackpot-winner__story-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-player-stories-jackpot-winner__story-heading {
  font-size: 2em;
  color: var(--page-player-stories-jackpot-winner-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-player-stories-jackpot-winner__quote {
  background-color: var(--page-player-stories-jackpot-winner-secondary-color);
  padding: 25px;
  border-left: 5px solid var(--page-player-stories-jackpot-winner-primary-color);
  margin: 30px 0;
  font-style: italic;
  color: var(--page-player-stories-jackpot-winner-light-text);
  border-radius: 5px;
}

.page-player-stories-jackpot-winner__quote p {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-player-stories-jackpot-winner__quote cite {
  display: block;
  text-align: right;
  font-style: normal;
  font-weight: bold;
  color: var(--page-player-stories-jackpot-winner-primary-color);
}

.page-player-stories-jackpot-winner__more-stories {
  background-color: #1a1a1a;
}

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

.page-player-stories-jackpot-winner__story-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-player-stories-jackpot-winner__story-card:hover {
  transform: translateY(-10px);
}

.page-player-stories-jackpot-winner__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-player-stories-jackpot-winner__card-title {
  font-size: 1.5em;
  color: var(--page-player-stories-jackpot-winner-primary-color);
  padding: 15px 20px 10px;
}

.page-player-stories-jackpot-winner__card-description {
  font-size: 1em;
  color: var(--page-player-stories-jackpot-winner-light-text);
  padding: 0 20px 20px;
  text-align: justify;
}

.page-player-stories-jackpot-winner__why-88king {
  background-color: #222;
}

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

.page-player-stories-jackpot-winner__features-list li {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--page-player-stories-jackpot-winner-primary-color);
}

.page-player-stories-jackpot-winner__list-heading {
  font-size: 1.6em;
  color: var(--page-player-stories-jackpot-winner-primary-color);
  margin-bottom: 15px;
}

.page-player-stories-jackpot-winner__tips {
  background-color: #1a1a1a;
}

.page-player-stories-jackpot-winner__tips-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 40px;
  color: var(--page-player-stories-jackpot-winner-light-text);
}

.page-player-stories-jackpot-winner__tips-list li {
  margin-bottom: 25px;
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--page-player-stories-jackpot-winner-secondary-color);
}

.page-player-stories-jackpot-winner__tips-list li .page-player-stories-jackpot-winner__list-heading {
  color: var(--page-player-stories-jackpot-winner-primary-color);
  margin-top: 0;
  font-size: 1.4em;
}

.page-player-stories-jackpot-winner__tips-list li .page-player-stories-jackpot-winner__paragraph {
  margin-bottom: 0;
}

.page-player-stories-jackpot-winner__testimonials {
  background-color: #222;
}

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

.page-player-stories-jackpot-winner__testimonial-card {
  background-color: var(--page-player-stories-jackpot-winner-secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--page-player-stories-jackpot-winner-light-text);
  font-style: italic;
}

.page-player-stories-jackpot-winner__testimonial-card p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-player-stories-jackpot-winner__testimonial-card cite {
  display: block;
  text-align: right;
  font-style: normal;
  font-weight: bold;
  color: var(--page-player-stories-jackpot-winner-primary-color);
}

.page-player-stories-jackpot-winner__faq {
  background-color: #1a1a1a;
}

.page-player-stories-jackpot-winner__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--page-player-stories-jackpot-winner-primary-color);
}

.page-player-stories-jackpot-winner__faq-question {
  font-size: 1.4em;
  color: var(--page-player-stories-jackpot-winner-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-player-stories-jackpot-winner__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-player-stories-jackpot-winner__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-player-stories-jackpot-winner__faq-answer {
  font-size: 1.05em;
  color: var(--page-player-stories-jackpot-winner-light-text);
  display: none; /* Hidden by default, toggled by JS */
  margin-top: 15px;
}

.page-player-stories-jackpot-winner__faq-answer.active {
  display: block;
}

.page-player-stories-jackpot-winner__cta-final {
  background: linear-gradient(45deg, var(--page-player-stories-jackpot-winner-secondary-color), var(--page-player-stories-jackpot-winner-dark-background));
  text-align: center;
  padding: 80px 20px;
}

.page-player-stories-jackpot-winner__cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-player-stories-jackpot-winner__hero-title {
    font-size: 2.8em;
  }
  .page-player-stories-jackpot-winner__hero-subtitle {
    font-size: 1.3em;
  }
  .page-player-stories-jackpot-winner__section-title {
    font-size: 2.2em;
  }
  .page-player-stories-jackpot-winner__story-content {
    flex-direction: column;
  }
  .page-player-stories-jackpot-winner__story-text,
  .page-player-stories-jackpot-winner__story-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-player-stories-jackpot-winner__story-grid {
    grid-template-columns: 1fr;
  }
  .page-player-stories-jackpot-winner__features-list {
    grid-template-columns: 1fr;
  }
  .page-player-stories-jackpot-winner__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-player-stories-jackpot-winner__hero {
    padding: 60px 15px;
  }
  .page-player-stories-jackpot-winner__hero-title {
    font-size: 2.2em;
  }
  .page-player-stories-jackpot-winner__hero-subtitle {
    font-size: 1.1em;
  }
  .page-player-stories-jackpot-winner__section-title {
    font-size: 1.8em;
  }
  .page-player-stories-jackpot-winner__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-player-stories-jackpot-winner__intro,
  .page-player-stories-jackpot-winner__featured-story,
  .page-player-stories-jackpot-winner__more-stories,
  .page-player-stories-jackpot-winner__why-88king,
  .page-player-stories-jackpot-winner__tips,
  .page-player-stories-jackpot-winner__testimonials,
  .page-player-stories-jackpot-winner__faq,
  .page-player-stories-jackpot-winner__cta-final {
    padding: 40px 0;
  }
  .page-player-stories-jackpot-winner__faq-item {
    padding: 20px;
  }
  .page-player-stories-jackpot-winner__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-player-stories-jackpot-winner__hero-title {
    font-size: 1.8em;
  }
  .page-player-stories-jackpot-winner__hero-subtitle {
    font-size: 1em;
  }
  .page-player-stories-jackpot-winner__section-title {
    font-size: 1.6em;
  }
  .page-player-stories-jackpot-winner__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-player-stories-jackpot-winner__faq-item {
    padding: 15px;
  }
  .page-player-stories-jackpot-winner__faq-question {
    font-size: 1.1em;
  }
  .page-player-stories-jackpot-winner__quote {
    padding: 20px;
  }
}