.page-betting-games-lottery {
  --primary-color: #1A237E;
  --secondary-color: #FFC107;
  --text-color-dark: #333;
  --text-color-light: #fff;
  --background-light: #f8f9fa;
  --background-dark: #2c3e50;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-betting-games-lottery__section {
  padding: 60px 0;
  text-align: center;
}

.page-betting-games-lottery__section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-betting-games-lottery__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-games-lottery__section-intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-betting-games-lottery__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3f51b5 100%);
  color: var(--text-color-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-betting-games-lottery__hero-section .page-betting-games-lottery__container {
  z-index: 1;
  position: relative;
}

.page-betting-games-lottery__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-games-lottery__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page-betting-games-lottery__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

/* Buttons */
.page-betting-games-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-betting-games-lottery__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-betting-games-lottery__btn--primary:hover {
  background-color: #e6b000;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-games-lottery__btn--secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-betting-games-lottery__btn--secondary:hover {
  background-color: #0d124b;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-games-lottery__btn--center {
  margin-top: 30px;
}

/* Why Choose Section */
.page-betting-games-lottery__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-betting-games-lottery__feature-item {
  background-color: var(--text-color-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-games-lottery__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-games-lottery__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-betting-games-lottery__feature-text {
  color: #666;
}

/* Game Types Section */
.page-betting-games-lottery__game-types-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-betting-games-lottery__game-item {
  background-color: var(--text-color-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-betting-games-lottery__game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-games-lottery__game-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-betting-games-lottery__game-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How To Play Section */
.page-betting-games-lottery__how-to-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-betting-games-lottery__step-item {
  background-color: var(--text-color-light);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  padding-left: 70px;
}

.page-betting-games-lottery__step-item::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-betting-games-lottery__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-betting-games-lottery__step-description {
  color: #666;
}

/* Promotions Section */
.page-betting-games-lottery__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-betting-games-lottery__promo-item {
  background-color: var(--text-color-light);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-games-lottery__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-games-lottery__promo-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-betting-games-lottery__promo-text {
  color: #666;
}

/* App Download Section */
.page-betting-games-lottery__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  text-align: left;
}

.page-betting-games-lottery__app-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.page-betting-games-lottery__app-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-betting-games-lottery__app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-betting-games-lottery__app-benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #444;
}

.page-betting-games-lottery__app-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2em;
}

.page-betting-games-lottery__app-image {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-betting-games-lottery__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-betting-games-lottery__faq-item {
  background-color: var(--text-color-light);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-betting-games-lottery__faq-question {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-betting-games-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-betting-games-lottery__faq-item.active .page-betting-games-lottery__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-games-lottery__faq-answer {
  color: #666;
  font-size: 1.05em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-betting-games-lottery__faq-item.active .page-betting-games-lottery__faq-answer {
  display: block;
}

/* Final CTA Section */
.page-betting-games-lottery__cta-final {
  background: var(--primary-color);
  color: var(--text-color-light);
  padding: 80px 0;
}

.page-betting-games-lottery__cta-content {
  max-width: 900px;
}

.page-betting-games-lottery__cta-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-games-lottery__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-games-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-betting-games-lottery__section-title {
    font-size: 2em;
  }
  .page-betting-games-lottery__app-content {
    flex-direction: column;
  }
  .page-betting-games-lottery__app-text, .page-betting-games-lottery__app-image {
    max-width: 100%;
    text-align: center;
  }
  .page-betting-games-lottery__app-benefits {
    text-align: left;
  }
  .page-betting-games-lottery__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-betting-games-lottery__hero-section {
    padding: 80px 0;
  }
  .page-betting-games-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-betting-games-lottery__hero-description {
    font-size: 1em;
  }
  .page-betting-games-lottery__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-games-lottery__section {
    padding: 40px 0;
  }
  .page-betting-games-lottery__section-title {
    font-size: 1.8em;
  }
  .page-betting-games-lottery__feature-item, .page-betting-games-lottery__game-item, .page-betting-games-lottery__promo-item, .page-betting-games-lottery__faq-item {
    padding: 20px;
  }
  .page-betting-games-lottery__step-item {
    padding: 20px 20px 20px 60px;
  }
  .page-betting-games-lottery__step-item::before {
    left: 20px;
    top: 20px;
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }
  .page-betting-games-lottery__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-betting-games-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-betting-games-lottery__hero-description {
    font-size: 0.9em;
  }
  .page-betting-games-lottery__section-title {
    font-size: 1.5em;
  }
  .page-betting-games-lottery__features-grid, .page-betting-games-lottery__game-grid, .page-betting-games-lottery__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-games-lottery__cta-title {
    font-size: 1.6em;
  }
}