.page-player-stories-jackpot-winner {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

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

.page-player-stories-jackpot-winner__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.page-player-stories-jackpot-winner__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(255, 215, 0, 0.3));
  z-index: 2;
}

.page-player-stories-jackpot-winner__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
}

.page-player-stories-jackpot-winner__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-player-stories-jackpot-winner__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

.page-player-stories-jackpot-winner__btn--primary {
  background-color: #FFD700;
  color: #0A192F; /* Dark blue text on gold button */
  border: 2px solid #FFD700;
}

.page-player-stories-jackpot-winner__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-player-stories-jackpot-winner__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-player-stories-jackpot-winner__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-player-stories-jackpot-winner__introduction,
.page-player-stories-jackpot-winner__interview-section,
.page-player-stories-jackpot-winner__cta-section,
.page-player-stories-jackpot-winner__additional-info {
  padding: 60px 0;
}

.page-player-stories-jackpot-winner__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-player-stories-jackpot-winner__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-player-stories-jackpot-winner__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-player-stories-jackpot-winner__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-player-stories-jackpot-winner__interview-card {
  background-color: #1A2A43; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-player-stories-jackpot-winner__interview-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-player-stories-jackpot-winner__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-player-stories-jackpot-winner__cta-section {
  background-color: #1A2A43;
  text-align: center;
  padding: 80px 0;
}

.page-player-stories-jackpot-winner__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-player-stories-jackpot-winner__cta-text {
  font-size: 1.2em;
  color: #F0F0F0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-player-stories-jackpot-winner__feature-list li {
  background-color: #1A2A43;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
}

/* 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: 2em;
  }
  .page-player-stories-jackpot-winner__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-player-stories-jackpot-winner__hero {
    height: 400px;
  }
  .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__introduction,
  .page-player-stories-jackpot-winner__interview-section,
  .page-player-stories-jackpot-winner__cta-section,
  .page-player-stories-jackpot-winner__additional-info {
    padding: 40px 0;
  }
  .page-player-stories-jackpot-winner__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-player-stories-jackpot-winner__interview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-player-stories-jackpot-winner__hero {
    height: 300px;
  }
  .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.8em;
  }
  .page-player-stories-jackpot-winner__cta-title {
    font-size: 1.8em;
  }
  .page-player-stories-jackpot-winner__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-player-stories-jackpot-winner__feature-list {
    grid-template-columns: 1fr;
  }
}