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

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

.page-lottery-games-keno__container--centered {
  text-align: center;
}

.page-lottery-games-keno__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for hero */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-keno__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-lottery-games-keno__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-lottery-games-keno__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-keno__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-lottery-games-keno__section:last-of-type {
  border-bottom: none;
}

.page-lottery-games-keno__section--intro {
  background-color: #fff;
}

.page-lottery-games-keno__section--history {
  background-color: #e9ecef;
  display: flex;
  align-items: center;
}

.page-lottery-games-keno__section--rules {
  background-color: #fff;
  display: flex;
  align-items: center;
}

.page-lottery-games-keno__section--guide {
  background-color: #f1f3f5;
}

.page-lottery-games-keno__section--tips {
  background-color: #fff;
  display: flex;
  align-items: center;
}

.page-lottery-games-keno__section--platform {
  background-color: #e9ecef;
}

.page-lottery-games-keno__section--faq {
  background-color: #fff;
}

.page-lottery-games-keno__section--cta {
  background-color: #007bff; /* Main brand color */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-lottery-games-keno__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker shade of main blue */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-lottery-games-keno__section--cta .page-lottery-games-keno__section-title {
  color: #fff;
}

.page-lottery-games-keno__sub-title {
  font-size: 1.8em;
  color: #007bff; /* Main brand color */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-lottery-games-keno__text {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #495057;
}

.page-lottery-games-keno__section--cta .page-lottery-games-keno__text {
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-keno__text--small {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 30px;
}

.page-lottery-games-keno__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #495057;
}

.page-lottery-games-keno__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-lottery-games-keno__list--features {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

.page-lottery-games-keno__list--features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-lottery-games-keno__list--features li::before {
  content: '✔'; /* Checkmark icon */
  color: #ffc107; /* Auxiliary color */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-lottery-games-keno__numbered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #495057;
}

.page-lottery-games-keno__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-lottery-games-keno__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-lottery-games-keno__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for contrast */
}

.page-lottery-games-keno__btn--primary:hover {
  background-color: #e0a800; /* Darker amber */
  transform: translateY(-2px);
}

.page-lottery-games-keno__btn--secondary {
  background-color: #007bff; /* Main brand color */
  color: #fff;
  margin: 0 10px;
}

.page-lottery-games-keno__btn--secondary:hover {
  background-color: #0056b3; /* Darker blue */
  transform: translateY(-2px);
}

.page-lottery-games-keno__btn--large {
  padding: 15px 35px;
  font-size: 1.3em;
}

.page-lottery-games-keno__btn-group {
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.page-lottery-games-keno__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.page-lottery-games-keno__image--left {
  float: left;
  margin-right: 30px;
  width: 45%;
}

.page-lottery-games-keno__image--right {
  float: right;
  margin-left: 30px;
  width: 45%;
}

.page-lottery-games-keno__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 70%;
}

.page-lottery-games-keno__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-lottery-games-keno__faq-question {
  font-size: 1.3em;
  color: #007bff; /* Main brand color */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-lottery-games-keno__faq-answer {
  font-size: 1.05em;
  color: #555;
}

/* Clearfix for floated images */
.page-lottery-games-keno__section::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-keno__hero-title {
    font-size: 2.5em;
  }

  .page-lottery-games-keno__section-title {
    font-size: 2em;
  }

  .page-lottery-games-keno__sub-title {
    font-size: 1.5em;
  }

  .page-lottery-games-keno__image--left,
  .page-lottery-games-keno__image--right {
    float: none;
    margin: 20px auto;
    width: 80%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-keno__hero-title {
    font-size: 2em;
  }

  .page-lottery-games-keno__hero-subtitle {
    font-size: 1.1em;
  }

  .page-lottery-games-keno__section-title {
    font-size: 1.8em;
  }

  .page-lottery-games-keno__text,
  .page-lottery-games-keno__list li,
  .page-lottery-games-keno__numbered-list li,
  .page-lottery-games-keno__faq-answer {
    font-size: 1em;
  }

  .page-lottery-games-keno__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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

  .page-lottery-games-keno__image--center {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .page-lottery-games-keno__hero-title {
    font-size: 1.8em;
  }

  .page-lottery-games-keno__section-title {
    font-size: 1.5em;
  }

  .page-lottery-games-keno__sub-title {
    font-size: 1.3em;
  }

  .page-lottery-games-keno__btn-group {
    flex-direction: column;
  }

  .page-lottery-games-keno__btn--secondary {
    margin: 10px 0;
  }
}