/* style/lottery-keno.css */

/* Variables */
:root {
  --page-lottery-keno-primary-color: #0A2342;
  --page-lottery-keno-secondary-color: #E0B400;
  --page-lottery-keno-text-dark: #0A2342;
  --page-lottery-keno-text-light: #FFFFFF;
  --page-lottery-keno-bg-light: #F8F8F8;
  --page-lottery-keno-bg-dark: #071A31;
  --page-lottery-keno-accent-gold: #FFD700;
  --page-lottery-keno-grey-text: #666666;
}

.page-lottery-keno {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-lottery-keno-text-dark);
  background-color: var(--page-lottery-keno-bg-light);
}

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

.page-lottery-keno__hero-section {
  background: linear-gradient(135deg, var(--page-lottery-keno-primary-color) 0%, var(--page-lottery-keno-bg-dark) 100%);
  color: var(--page-lottery-keno-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-keno__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-lottery-keno__highlight {
  color: var(--page-lottery-keno-secondary-color);
}

.page-lottery-keno__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-lottery-keno__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-lottery-keno__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-lottery-keno__button--primary {
  background-color: var(--page-lottery-keno-secondary-color);
  color: var(--page-lottery-keno-primary-color);
}

.page-lottery-keno__button--primary:hover {
  background-color: var(--page-lottery-keno-accent-gold);
  transform: translateY(-3px);
}

.page-lottery-keno__button--secondary {
  background-color: transparent;
  color: var(--page-lottery-keno-secondary-color);
  border: 2px solid var(--page-lottery-keno-secondary-color);
}

.page-lottery-keno__button--secondary:hover {
  background-color: var(--page-lottery-keno-secondary-color);
  color: var(--page-lottery-keno-primary-color);
  transform: translateY(-3px);
}

.page-lottery-keno__section-title {
  font-size: 2.5em;
  color: var(--page-lottery-keno-primary-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-lottery-keno__about-section,
.page-lottery-keno__how-to-play-section,
.page-lottery-keno__why-choose-section,
.page-lottery-keno__strategy-section,
.page-lottery-keno__cta-bottom-section {
  padding: 80px 0;
}

.page-lottery-keno__about-section {
  background-color: var(--page-lottery-keno-bg-light);
}

.page-lottery-keno__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-lottery-keno__content-grid:nth-of-type(even) {
  flex-direction: row-reverse;
}

.page-lottery-keno__text-content {
  flex: 1;
  font-size: 1.1em;
  color: var(--page-lottery-keno-grey-text);
}

.page-lottery-keno__text-content p {
  margin-bottom: 20px;
}

.page-lottery-keno__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-lottery-keno__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-lottery-keno__how-to-play-section {
  background-color: var(--page-lottery-keno-bg-dark);
  color: var(--page-lottery-keno-text-light);
}

.page-lottery-keno__how-to-play-section .page-lottery-keno__section-title {
  color: var(--page-lottery-keno-text-light);
}

.page-lottery-keno__how-to-play-section .page-lottery-keno__section-title::after {
  background-color: var(--page-lottery-keno-secondary-color);
}

.page-lottery-keno__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-lottery-keno__step-list li {
  background-color: #1a3a5e;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-lottery-keno__step-list li h3 {
  color: var(--page-lottery-keno-secondary-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-lottery-keno__step-list li p {
  color: #cccccc;
}

.page-lottery-keno__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--page-lottery-keno-secondary-color);
  color: var(--page-lottery-keno-primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
}

.page-lottery-keno__link {
  color: var(--page-lottery-keno-secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-lottery-keno__link:hover {
  color: var(--page-lottery-keno-accent-gold);
  text-decoration: underline;
}

.page-lottery-keno__cta-play {
  text-align: center;
  margin-top: 50px;
}

.page-lottery-keno__why-choose-section {
  background-color: var(--page-lottery-keno-bg-light);
}

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

.page-lottery-keno__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-lottery-keno__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.page-lottery-keno__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.page-lottery-keno__feature-item h3 {
  color: var(--page-lottery-keno-primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-lottery-keno__feature-item p {
  color: var(--page-lottery-keno-grey-text);
  font-size: 1em;
  margin-bottom: 20px;
}

.page-lottery-keno__link--action {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  border: 1px solid var(--page-lottery-keno-secondary-color);
  border-radius: 5px;
  font-size: 0.9em;
  background-color: transparent;
}

.page-lottery-keno__link--action:hover {
  background-color: var(--page-lottery-keno-secondary-color);
  color: var(--page-lottery-keno-primary-color);
  text-decoration: none;
}

.page-lottery-keno__strategy-section {
  background-color: var(--page-lottery-keno-bg-dark);
  color: var(--page-lottery-keno-text-light);
}

.page-lottery-keno__strategy-section .page-lottery-keno__section-title {
  color: var(--page-lottery-keno-text-light);
}

.page-lottery-keno__strategy-section .page-lottery-keno__section-title::after {
  background-color: var(--page-lottery-keno-secondary-color);
}

.page-lottery-keno__strategy-section .page-lottery-keno__text-content {
  color: #cccccc;
}

.page-lottery-keno__tip-list {
  list-style: none;
  padding-left: 0;
}

.page-lottery-keno__tip-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-lottery-keno__tip-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--page-lottery-keno-secondary-color);
  font-weight: bold;
}

.page-lottery-keno__tip-list strong {
  color: var(--page-lottery-keno-secondary-color);
}

.page-lottery-keno__cta-bottom-section {
  background-color: var(--page-lottery-keno-primary-color);
  color: var(--page-lottery-keno-text-light);
  text-align: center;
  padding: 100px 0;
}

.page-lottery-keno__cta-bottom-section .page-lottery-keno__section-title {
  color: var(--page-lottery-keno-text-light);
}

.page-lottery-keno__cta-bottom-section .page-lottery-keno__section-title::after {
  background-color: var(--page-lottery-keno-secondary-color);
}

.page-lottery-keno__cta-bottom-section .page-lottery-keno__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-lottery-keno__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-lottery-keno__hero-title {
    font-size: 2.8em;
  }
  .page-lottery-keno__section-title {
    font-size: 2em;
  }
  .page-lottery-keno__content-grid {
    flex-direction: column;
  }
  .page-lottery-keno__content-grid:nth-of-type(even) {
    flex-direction: column;
  }
  .page-lottery-keno__text-content, .page-lottery-keno__image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-lottery-keno__hero-section {
    padding: 80px 0;
  }
  .page-lottery-keno__hero-title {
    font-size: 2.2em;
  }
  .page-lottery-keno__hero-description {
    font-size: 1em;
  }
  .page-lottery-keno__hero-actions,
  .page-lottery-keno__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-keno__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-lottery-keno__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-lottery-keno__step-list li {
    padding: 20px;
    padding-left: 65px;
  }
  .page-lottery-keno__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.4em;
    left: 15px;
  }
  .page-lottery-keno__feature-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .page-lottery-keno__hero-title {
    font-size: 1.8em;
  }
  .page-lottery-keno__button {
    font-size: 1em;
    padding: 12px 20px;
    width: 90%;
  }
  .page-lottery-keno__section-title {
    font-size: 1.5em;
  }
  .page-lottery-keno__features-grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-keno__about-section,
  .page-lottery-keno__how-to-play-section,
  .page-lottery-keno__why-choose-section,
  .page-lottery-keno__strategy-section,
  .page-lottery-keno__cta-bottom-section {
    padding: 50px 0;
  }
}