/* style/jackpot-jackpot-historical-winners.css */
.page-jackpot-jackpot-historical-winners {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for contrast on dark background */
  background-color: #1A1A2E; /* Dark background */
  line-height: 1.6;
}

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

.page-jackpot-jackpot-historical-winners__hero {
  position: relative;
  background: linear-gradient(135deg, #1A1A2E, #33334A); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.page-jackpot-jackpot-historical-winners__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-jackpot-jackpot-historical-winners__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-jackpot-jackpot-historical-winners__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jackpot-jackpot-historical-winners__subtitle {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-jackpot-jackpot-historical-winners__section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-jackpot-jackpot-historical-winners__section:nth-of-type(even) {
  background-color: #222238;
}

.page-jackpot-jackpot-historical-winners__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-jackpot-jackpot-historical-winners__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-jackpot-jackpot-historical-winners__section p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-jackpot-jackpot-historical-winners__section p a:hover {
  text-decoration: underline;
}

.page-jackpot-jackpot-historical-winners__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-jackpot-jackpot-historical-winners__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A2E; /* Dark text on gold */
}

.page-jackpot-jackpot-historical-winners__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-jackpot-jackpot-historical-winners__btn--secondary {
  background-color: #DC143C; /* Deep Red */
  color: #FFFFFF;
}

.page-jackpot-jackpot-historical-winners__btn--secondary:hover {
  background-color: #B20F2F;
  transform: translateY(-2px);
}

.page-jackpot-jackpot-historical-winners__brand-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-jackpot-jackpot-historical-winners__brand-link:hover {
  text-decoration: underline;
}

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

.page-jackpot-jackpot-historical-winners__winner-card {
  background-color: #2A2A40;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-jackpot-jackpot-historical-winners__winner-card:hover {
  transform: translateY(-5px);
}

.page-jackpot-jackpot-historical-winners__winner-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-jackpot-jackpot-historical-winners__winner-name {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-jackpot-jackpot-historical-winners__winner-story {
  font-size: 1em;
  color: #C0C0C0;
}

.page-jackpot-jackpot-historical-winners__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-jackpot-jackpot-historical-winners__feature-card {
  background-color: #2A2A40;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-jackpot-jackpot-historical-winners__feature-card:hover {
  transform: translateY(-5px);
}

.page-jackpot-jackpot-historical-winners__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-jackpot-jackpot-historical-winners__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-jackpot-jackpot-historical-winners__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-jackpot-jackpot-historical-winners__list li {
  background-color: #2A2A40;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #F0F0F0;
  position: relative;
  padding-left: 50px;
}

.page-jackpot-jackpot-historical-winners__list li::before {
  content: '✔️';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-jackpot-jackpot-historical-winners__list li strong {
  color: #FFD700;
}

.page-jackpot-jackpot-historical-winners__strategy-image,
.page-jackpot-jackpot-historical-winners__security-image,
.page-jackpot-jackpot-historical-winners__app-screenshot {
  display: block;
  max-width: 80%;
  margin: 40px auto 20px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 3px solid #DC143C;
}

.page-jackpot-jackpot-historical-winners__cta-content {
  text-align: center;
  background-color: #2A2A40;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-jackpot-jackpot-historical-winners__cta-image {
  max-width: 100%;
  margin: 30px auto;
  border-radius: 8px;
}

/* Keyword highlighting */
.page-jackpot-jackpot-historical-winners .keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-jackpot-jackpot-historical-winners__title {
    font-size: 2.5em;
  }

  .page-jackpot-jackpot-historical-winners__subtitle {
    font-size: 1.1em;
  }

  .page-jackpot-jackpot-historical-winners__section-title {
    font-size: 2em;
  }

  .page-jackpot-jackpot-historical-winners__winner-grid,
  .page-jackpot-jackpot-historical-winners__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-jackpot-jackpot-historical-winners__list li {
    padding-left: 40px;
  }
}

@media (max-width: 480px) {
  .page-jackpot-jackpot-historical-winners__title {
    font-size: 1.8em;
  }

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

  .page-jackpot-jackpot-historical-winners__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-jackpot-jackpot-historical-winners__section-title {
    font-size: 1.6em;
  }
}