/* style/lottery-games-winning-odds.css */
.page-lottery-games-winning-odds {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for general content on light backgrounds */
  background-color: #f8f8f8;
}

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

.page-lottery-games-winning-odds__section {
  padding: 60px 0;
  text-align: center;
}

.page-lottery-games-winning-odds__section--dark-bg {
  background-color: #2c3e50; /* Dark background for contrast */
  color: #ecf0f1; /* Light text on dark background */
}

.page-lottery-games-winning-odds__section--gradient-bg {
  background: linear-gradient(135deg, #1E90FF, #007bff); /* Blue gradient */
  color: #ffffff; /* White text on blue gradient */
}

.page-lottery-games-winning-odds__heading {
  font-size: 2.8em;
  color: #333333;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-lottery-games-winning-odds__section--dark-bg .page-lottery-games-winning-odds__heading,
.page-lottery-games-winning-odds__heading--white {
  color: #FFD700; /* Gold heading on dark/gradient background */
}

.page-lottery-games-winning-odds__subheading {
  font-size: 1.8em;
  color: #1E90FF;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-lottery-games-winning-odds__subheading--white {
  color: #FFD700; /* Gold subheading on gradient background */
}

.page-lottery-games-winning-odds__micro-heading {
  font-size: 1.4em;
  color: #555555;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-lottery-games-winning-odds p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-winning-odds__section--dark-bg p {
  color: #ecf0f1;
}

.page-lottery-games-winning-odds__text--white {
  color: #ffffff;
}

.page-lottery-games-winning-odds__list {
  list-style: none;
  padding: 0;
  margin: 20px auto 40px;
  max-width: 900px;
  text-align: left;
}

.page-lottery-games-winning-odds__list li {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: #333333;
}

.page-lottery-games-winning-odds__section--dark-bg .page-lottery-games-winning-odds__list li {
  background-color: #34495e; /* Darker background for list items on dark section */
  color: #ecf0f1;
}

.page-lottery-games-winning-odds__list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-lottery-games-winning-odds__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-lottery-games-winning-odds__list--columns li {
  margin-bottom: 0;
}

/* Hero Section */
.page-lottery-games-winning-odds__hero {
  background: linear-gradient(135deg, #FFD700, #1E90FF); /* Gold to Blue gradient */
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-winning-odds__hero-content {
  z-index: 1;
  max-width: 900px;
  color: #2c3e50; /* Dark text on light/gold background */
}

.page-lottery-games-winning-odds__hero-title {
  font-size: 3.5em;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-lottery-games-winning-odds__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #2c3e50;
}

.page-lottery-games-winning-odds__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-lottery-games-winning-odds__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-lottery-games-winning-odds__hero-button {
  background-color: #2c3e50; /* Dark button on hero */
  color: #FFD700; /* Gold text on dark button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #2c3e50;
}

.page-lottery-games-winning-odds__hero-button:hover {
  background-color: #FFD700;
  color: #2c3e50;
  border-color: #2c3e50;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1em;
  border: none;
}

.btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #2c3e50; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.btn--primary:hover {
  background-color: #e6c200;
  color: #2c3e50;
}

.btn--secondary {
  background-color: transparent;
  color: #1E90FF; /* Blue text */
  border: 2px solid #1E90FF;
}

.btn--secondary:hover {
  background-color: #1E90FF;
  color: #ffffff;
}

/* Game Analysis Section */
.page-lottery-games-winning-odds__game-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-lottery-games-winning-odds__game-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #1E90FF; /* Blue accent */
}

.page-lottery-games-winning-odds__game-card .page-lottery-games-winning-odds__subheading {
  color: #1E90FF;
  margin-top: 0;
}

.page-lottery-games-winning-odds__game-card .page-lottery-games-winning-odds__micro-heading {
  color: #333333;
}

/* Strategy Grid */
.page-lottery-games-winning-odds__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-lottery-games-winning-odds__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-lottery-games-winning-odds__strategy-item .page-lottery-games-winning-odds__subheading {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.6em;
}

/* FAQ Section */
.page-lottery-games-winning-odds__faq {
  margin-top: 40px;
  text-align: left;
}

.page-lottery-games-winning-odds__faq-item {
  background-color: #34495e; /* Darker background for FAQ items */
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #FFD700; /* Gold accent */
}

.page-lottery-games-winning-odds__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold text for questions */
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
}

.page-lottery-games-winning-odds__faq-answer {
  font-size: 1.05em;
  color: #ecf0f1; /* Light text for answers */
  display: block; /* Ensure answer is visible by default */
}

/* Call to Action */
.page-lottery-games-winning-odds__cta-section {
  background-color: #FFD700; /* Gold background */
  padding: 80px 20px;
  text-align: center;
  color: #2c3e50; /* Dark text on gold */
}

.page-lottery-games-winning-odds__cta-title {
  font-size: 3em;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-lottery-games-winning-odds__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #2c3e50;
}

.page-lottery-games-winning-odds__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-lottery-games-winning-odds__cta-button {
  min-width: 200px;
}

/* Image Styling */
.page-lottery-games-winning-odds__image--full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-winning-odds__image--margin-top {
  margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-winning-odds__heading {
    font-size: 2.2em;
  }
  .page-lottery-games-winning-odds__hero-title {
    font-size: 2.8em;
  }
  .page-lottery-games-winning-odds__cta-title {
    font-size: 2.5em;
  }
  .page-lottery-games-winning-odds__list--columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-winning-odds__hero {
    padding: 60px 15px;
  }
  .page-lottery-games-winning-odds__hero-title {
    font-size: 2.2em;
  }
  .page-lottery-games-winning-odds__hero-subtitle {
    font-size: 1.1em;
  }
  .page-lottery-games-winning-odds__section {
    padding: 40px 0;
  }
  .page-lottery-games-winning-odds__heading {
    font-size: 1.8em;
  }
  .page-lottery-games-winning-odds__subheading {
    font-size: 1.5em;
  }
  .page-lottery-games-winning-odds p {
    font-size: 1em;
  }
  .page-lottery-games-winning-odds__game-analysis,
  .page-lottery-games-winning-odds__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-games-winning-odds__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-games-winning-odds__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-winning-odds__hero-title {
    font-size: 1.8em;
  }
  .page-lottery-games-winning-odds__hero-subtitle {
    font-size: 1em;
  }
  .page-lottery-games-winning-odds__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-games-winning-odds__heading {
    font-size: 1.5em;
  }
  .page-lottery-games-winning-odds__list li {
    font-size: 0.95em;
  }
  .page-lottery-games-winning-odds__cta-title {
    font-size: 1.8em;
  }
}