.page-lottery-games-keno {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #0F1A2B; /* Primary dark background */
  line-height: 1.6;
}

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

.page-lottery-games-keno .highlight {
  color: #FFD700; /* Secondary gold for highlights */
}

.page-lottery-games-keno a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-lottery-games-keno a:hover {
  color: #e0b800; /* Slightly darker gold on hover */
}

.page-lottery-games-keno .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-lottery-games-keno .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0F1A2B; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-lottery-games-keno .btn-primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
}

.page-lottery-games-keno .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-lottery-games-keno .btn-secondary:hover {
  background-color: #FFD700;
  color: #0F1A2B;
}

.page-lottery-games-keno .btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

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

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

/* Hero Section */
.page-lottery-games-keno .hero-section {
  background: linear-gradient(135deg, #0F1A2B 0%, #1a2c42 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-keno .hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-lottery-games-keno .hero-content {
  flex: 1;
  max-width: 600px;
}

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

.page-lottery-games-keno .hero-subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

.page-lottery-games-keno .hero-actions {
  display: flex;
  gap: 20px;
}

.page-lottery-games-keno .hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-lottery-games-keno .hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* About Keno Section */
.page-lottery-games-keno .about-keno-section {
  padding: 80px 0;
  background-color: #1a2c42;
}

.page-lottery-games-keno .about-keno-section .content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-lottery-games-keno .about-keno-section .text-content {
  flex: 1;
}

.page-lottery-games-keno .about-keno-section .image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

/* Game Features Section */
.page-lottery-games-keno .game-features-section {
  padding: 80px 0;
  background-color: #0F1A2B;
}

.page-lottery-games-keno .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-lottery-games-keno .feature-item {
  background-color: #1a2c42;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-lottery-games-keno .feature-item:hover {
  transform: translateY(-10px);
}

.page-lottery-games-keno .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-lottery-games-keno .feature-item h3 {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-lottery-games-keno .feature-item p {
  color: #B0B0B0;
}

/* How to Play Section */
.page-lottery-games-keno .how-to-play-section {
  padding: 80px 0;
  background-color: #1a2c42;
}

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

.page-lottery-games-keno .step-item {
  background-color: #0F1A2B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-keno .step-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-lottery-games-keno .step-item h3 {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-lottery-games-keno .step-item p {
  color: #B0B0B0;
}

/* Strategy Tips Section */
.page-lottery-games-keno .strategy-tips-section {
  padding: 80px 0;
  background-color: #0F1A2B;
}

.page-lottery-games-keno .strategy-tips-section .content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse; /* Image on right, text on left */
}

.page-lottery-games-keno .strategy-tips-section .text-content {
  flex: 1;
}

.page-lottery-games-keno .strategy-tips-section .image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.page-lottery-games-keno .strategy-tips-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-lottery-games-keno .strategy-tips-section ul li {
  background-color: #1a2c42;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-lottery-games-keno .strategy-tips-section ul li strong {
  color: #FFD700;
}

/* CTA Section */
.page-lottery-games-keno .cta-section {
  padding: 80px 0;
  background-color: #1a2c42;
  text-align: center;
}

.page-lottery-games-keno .cta-description {
  font-size: 1.4em;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-keno .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* FAQ Section */
.page-lottery-games-keno .faq-section {
  padding: 80px 0;
  background-color: #0F1A2B;
}

.page-lottery-games-keno .faq-item {
  background-color: #1a2c42;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-lottery-games-keno .faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-lottery-games-keno .faq-item p {
  color: #E0E0E0;
  font-size: 1.05em;
  margin-top: 15px;
  display: block; /* Ensure it's visible by default for static content */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-keno .hero-section .container,
  .page-lottery-games-keno .about-keno-section .content-grid,
  .page-lottery-games-keno .strategy-tips-section .content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-lottery-games-keno .hero-image-wrapper,
  .page-lottery-games-keno .about-keno-section .image-content,
  .page-lottery-games-keno .strategy-tips-section .image-content {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 30px;
  }

  .page-lottery-games-keno .hero-title {
    font-size: 2.8em;
  }

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

  .page-lottery-games-keno .hero-actions,
  .page-lottery-games-keno .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery-games-keno .btn-large {
    width: 100%;
  }

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

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

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

  .page-lottery-games-keno .features-grid,
  .page-lottery-games-keno .steps-grid {
    grid-template-columns: 1fr;
  }

  .page-lottery-games-keno .feature-item,
  .page-lottery-games-keno .step-item {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-keno .hero-section {
    min-height: auto;
  }
  .page-lottery-games-keno .hero-title {
    font-size: 1.8em;
  }
  .page-lottery-games-keno .hero-subtitle {
    font-size: 1em;
  }
  .page-lottery-games-keno .section-title {
    font-size: 1.8em;
  }
  .page-lottery-games-keno .faq-item h3 {
    font-size: 1.2em;
  }
}