/* style/lottery-games-winning-stories.css */
.page-lottery-games-winning-stories {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #1A202C;
  line-height: 1.6;
}

.page-lottery-games-winning-stories .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-games-winning-stories .hero-section {
  background: linear-gradient(135deg, #1A202C, #3d0d0d); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-lottery-games-winning-stories .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-lottery-games-winning-stories .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-lottery-games-winning-stories .btn-primary {
  display: inline-block;
  background-color: #E53E3E; /* Auxiliary color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-lottery-games-winning-stories .btn-primary:hover {
  background-color: #c02a2a;
  transform: translateY(-2px);
}

.page-lottery-games-winning-stories .btn-primary.large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-lottery-games-winning-stories .btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #E53E3E;
  padding: 12px 25px;
  border: 2px solid #E53E3E;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-lottery-games-winning-stories .btn-secondary:hover {
  background-color: #E53E3E;
  color: #FFFFFF;
}

.page-lottery-games-winning-stories .section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 50px;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 15px;
}

.page-lottery-games-winning-stories .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E53E3E;
  border-radius: 2px;
}

.page-lottery-games-winning-stories .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -30px auto 60px auto;
  color: #E0E0E0;
}

.page-lottery-games-winning-stories .highlight {
  color: #E53E3E;
}

.page-lottery-games-winning-stories .winning-stories-overview,
.page-lottery-games-winning-stories .story-section,
.page-lottery-games-winning-stories .tips-section,
.page-lottery-games-winning-stories .cta-section {
  padding: 80px 0;
}

.page-lottery-games-winning-stories .bg-dark-section {
  background-color: #1A202C;
  color: #FFFFFF;
}

.page-lottery-games-winning-stories .text-light {
  color: #FFFFFF;
}

.page-lottery-games-winning-stories .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-lottery-games-winning-stories .feature-item {
  background-color: #2D3748; /* Slightly lighter dark for contrast */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-winning-stories .feature-item h3 {
  color: #E53E3E;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-lottery-games-winning-stories .feature-item p {
  color: #CBD5E0;
}

.page-lottery-games-winning-stories .feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-lottery-games-winning-stories .full-width-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-winning-stories .story-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #2D3748;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-winning-stories .story-card.reverse {
  flex-direction: row-reverse;
}

.page-lottery-games-winning-stories .story-image {
  flex: 1;
  min-width: 350px;
  height: 400px;
  object-fit: cover;
}

.page-lottery-games-winning-stories .story-content {
  flex: 2;
  padding: 40px;
  color: #E0E0E0;
}

.page-lottery-games-winning-stories .story-content h3 {
  font-size: 2em;
  color: #E53E3E;
  margin-bottom: 20px;
}

.page-lottery-games-winning-stories .story-content p {
  margin-bottom: 15px;
}

.page-lottery-games-winning-stories .tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto;
}

.page-lottery-games-winning-stories .tips-list li {
  background-color: #2D3748;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-left: 5px solid #E53E3E;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-lottery-games-winning-stories .tips-list li b {
  color: #E53E3E;
}

.page-lottery-games-winning-stories .cta-section {
  text-align: center;
  background-color: #1A202C;
  color: #FFFFFF;
  padding: 100px 0;
}

.page-lottery-games-winning-stories .cta-section .section-title {
  color: #FFFFFF;
}

.page-lottery-games-winning-stories .cta-section .section-title::after {
  background-color: #E53E3E;
}

.page-lottery-games-winning-stories .cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-lottery-games-winning-stories .cta-section .small-text {
  font-size: 0.9em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #A0AEC0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-lottery-games-winning-stories .hero-title {
    font-size: 2.8em;
  }

  .page-lottery-games-winning-stories .section-title {
    font-size: 2.2em;
  }

  .page-lottery-games-winning-stories .story-image,
  .page-lottery-games-winning-stories .story-content {
    flex: 1 1 100%;
  }

  .page-lottery-games-winning-stories .story-card.reverse {
    flex-direction: column;
  }

  .page-lottery-games-winning-stories .story-card {
    flex-direction: column;
  }

  .page-lottery-games-winning-stories .story-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-winning-stories .hero-section {
    padding: 80px 0;
  }

  .page-lottery-games-winning-stories .hero-title {
    font-size: 2.2em;
  }

  .page-lottery-games-winning-stories .hero-description {
    font-size: 1em;
  }

  .page-lottery-games-winning-stories .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-lottery-games-winning-stories .story-content h3 {
    font-size: 1.6em;
  }

  .page-lottery-games-winning-stories .features-grid {
    grid-template-columns: 1fr;
  }

  .page-lottery-games-winning-stories .full-width-image {
    margin-top: 40px;
  }

  .page-lottery-games-winning-stories .winning-stories-overview,
  .page-lottery-games-winning-stories .story-section,
  .page-lottery-games-winning-stories .tips-section,
  .page-lottery-games-winning-stories .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-winning-stories .hero-title {
    font-size: 1.8em;
  }

  .page-lottery-games-winning-stories .btn-primary,
  .page-lottery-games-winning-stories .btn-primary.large {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-lottery-games-winning-stories .section-title {
    font-size: 1.5em;
  }

  .page-lottery-games-winning-stories .story-content h3 {
    font-size: 1.4em;
  }

  .page-lottery-games-winning-stories .story-image {
    height: 250px;
    min-width: unset;
  }
  .page-lottery-games-winning-stories .tips-list li {
    font-size: 1em;
    padding: 20px;
  }
}