/* style/lottery-games-pk10.css */
.page-lottery-games-pk10 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-lottery-games-pk10__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.page-lottery-games-pk10__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-lottery-games-pk10__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: left;
}

.page-lottery-games-pk10__hero-content {
  max-width: 600px;
  padding: 20px;
}

.page-lottery-games-pk10__hero-section h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffc107; /* High contrast for title */
  line-height: 1.2;
}

.page-lottery-games-pk10__hero-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0f2ff; /* Light text for readability */
}

.page-lottery-games-pk10__hero-image-wrapper {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}

.page-lottery-games-pk10__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-pk10 h2 {
  font-size: 2.5em;
  color: #0056b3; /* Darker blue for contrast */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-lottery-games-pk10 h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-lottery-games-pk10 p {
  font-size: 1.1em;
  color: #495057;
  margin-bottom: 20px;
  text-align: justify;
}

.page-lottery-games-pk10__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-lottery-games-pk10__image-centered {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-lottery-games-pk10__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-games-pk10__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-lottery-games-pk10__grid-item h3 {
  color: #007bff;
  margin-top: 0;
}

.page-lottery-games-pk10__grid-item p {
  color: #555;
  font-size: 1em;
}

.page-lottery-games-pk10__steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-lottery-games-pk10__steps li {
  background-color: #fff;
  padding: 25px 30px 25px 70px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
}

.page-lottery-games-pk10__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #ffc107; /* Auxiliary color for step numbers */
  color: #333; /* Dark text for contrast on yellow */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-lottery-games-pk10__steps li h3 {
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-lottery-games-pk10__steps li p {
  color: #555;
  font-size: 1em;
  margin-bottom: 0;
}

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

.page-lottery-games-pk10__list li {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff; /* Main color accent */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #495057;
}

.page-lottery-games-pk10__list li strong {
  color: #0056b3;
}

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

.page-lottery-games-pk10__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-lottery-games-pk10__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-lottery-games-pk10__feature-item h3 {
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-lottery-games-pk10__feature-item p {
  color: #555;
  font-size: 1em;
  margin-bottom: 15px;
  text-align: center;
}

.page-lottery-games-pk10__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-lottery-games-pk10__btn--primary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-lottery-games-pk10__btn--primary:hover {
  background-color: #0056b3;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

.page-lottery-games-pk10__btn--secondary {
  background-color: #ffc107;
  color: #333; /* Dark text for contrast on yellow */
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-lottery-games-pk10__btn--secondary:hover {
  background-color: #e0a800;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
  transform: translateY(-2px);
}

.page-lottery-games-pk10__btn--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 25px;
  margin-top: auto; /* Push button to bottom */
}

.page-lottery-games-pk10__cta-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
}

.page-lottery-games-pk10__section--responsible-gambling {
  background-color: #f0f0f0;
  padding: 50px 0;
  color: #555;
}

.page-lottery-games-pk10__section--responsible-gambling h2 {
  color: #333;
}

.page-lottery-games-pk10__section--responsible-gambling p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-pk10__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 15px;
  }

  .page-lottery-games-pk10__hero-content {
    max-width: 100%;
    padding: 0;
  }

  .page-lottery-games-pk10__hero-section h1 {
    font-size: 2.5em;
  }

  .page-lottery-games-pk10__hero-section p {
    font-size: 1em;
  }

  .page-lottery-games-pk10 h2 {
    font-size: 2em;
  }

  .page-lottery-games-pk10 h3 {
    font-size: 1.5em;
  }

  .page-lottery-games-pk10 p,
  .page-lottery-games-pk10__list li {
    font-size: 0.95em;
  }

  .page-lottery-games-pk10__btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-pk10__section {
    padding: 40px 0;
  }

  .page-lottery-games-pk10__hero-section {
    padding: 60px 15px;
  }

  .page-lottery-games-pk10__hero-section h1 {
    font-size: 2em;
  }

  .page-lottery-games-pk10 h2 {
    font-size: 1.8em;
  }

  .page-lottery-games-pk10__grid,
  .page-lottery-games-pk10__features-grid {
    grid-template-columns: 1fr;
  }

  .page-lottery-games-pk10__steps li {
    padding: 20px 25px 20px 60px;
  }

  .page-lottery-games-pk10__steps li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
    left: 20px;
  }

  .page-lottery-games-pk10__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-pk10__hero-section h1 {
    font-size: 1.8em;
  }

  .page-lottery-games-pk10 h2 {
    font-size: 1.5em;
  }

  .page-lottery-games-pk10 h3 {
    font-size: 1.3em;
  }

  .page-lottery-games-pk10__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-lottery-games-pk10__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}