.page-online-games-lottery {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0A203C; /* Main background color */
}

.page-online-games-lottery__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A203C 0%, #304a6e 100%); /* Gradient background */
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-online-games-lottery__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-online-games-lottery__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-online-games-lottery__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-online-games-lottery__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.page-online-games-lottery__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
  cursor: pointer;
  border: none;
}

.page-online-games-lottery__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A203C; /* Dark text on accent background */
}

.page-online-games-lottery__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-online-games-lottery__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-online-games-lottery__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A203C;
  transform: translateY(-2px);
}

.page-online-games-lottery__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-online-games-lottery__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}

.page-online-games-lottery__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-online-games-lottery__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-online-games-lottery__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-online-games-lottery__about {
  background-color: #0f2b4c; /* Slightly lighter dark background */
}

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

.page-online-games-lottery__feature-item {
  background-color: #1a385b; /* Darker card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-online-games-lottery__feature-item:hover {
  transform: translateY(-10px);
}

.page-online-games-lottery__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-online-games-lottery__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-online-games-lottery__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-online-games-lottery__games {
  background-color: #0A203C;
}

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

.page-online-games-lottery__game-card {
  background-color: #1a385b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-online-games-lottery__game-card:hover {
  transform: translateY(-10px);
}

.page-online-games-lottery__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-online-games-lottery__game-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 15px 20px 5px;
}

.page-online-games-lottery__game-description {
  font-size: 0.95em;
  color: #E0E0E0;
  padding: 0 20px 20px;
}

.page-online-games-lottery__guide {
  background-color: #0f2b4c;
}

.page-online-games-lottery__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-online-games-lottery__step-item {
  background-color: #1a385b;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-online-games-lottery__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-online-games-lottery__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-online-games-lottery__step-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-online-games-lottery__tips {
  background-color: #0A203C;
}

.page-online-games-lottery__tips-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-online-games-lottery__tips-image-wrapper {
  width: 100%;
  max-width: 600px;
}

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

.page-online-games-lottery__tips-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.page-online-games-lottery__tips-list li {
  background-color: #1a385b;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

.page-online-games-lottery__tips-list li strong {
  color: #FFD700;
}

.page-online-games-lottery__promotions {
  background-color: #0f2b4c;
}

.page-online-games-lottery__promotions-intro {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-online-games-lottery__promotion-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-online-games-lottery__promotion-list li {
  background-color: #1a385b;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

.page-online-games-lottery__promotion-list li strong {
  color: #FFD700;
}

.page-online-games-lottery__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-online-games-lottery__faq {
  background-color: #0A203C;
}

.page-online-games-lottery__faq-items {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-online-games-lottery__faq-item {
  background-color: #1a385b;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-online-games-lottery__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-online-games-lottery__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-online-games-lottery__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-online-games-lottery__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-online-games-lottery__cta-bottom {
  background-color: #FFD700; /* Accent color background */
  color: #0A203C; /* Dark text on accent background */
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 50px;
}

.page-online-games-lottery__cta-bottom .page-online-games-lottery__cta-title {
  font-size: 3em;
  color: #0A203C;
  margin-bottom: 20px;
}

.page-online-games-lottery__cta-bottom .page-online-games-lottery__cta-description {
  font-size: 1.3em;
  color: #2c4a6e;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-online-games-lottery__cta-bottom .page-online-games-lottery__btn--primary {
  background-color: #0A203C;
  color: #FFD700;
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-online-games-lottery__cta-bottom .page-online-games-lottery__btn--primary:hover {
  background-color: #1a385b;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-online-games-lottery__hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .page-online-games-lottery__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-online-games-lottery__hero-title {
    font-size: 2.8em;
  }

  .page-online-games-lottery__section-title {
    font-size: 2.2em;
  }

  .page-online-games-lottery__tips-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-online-games-lottery__hero-title {
    font-size: 2.2em;
  }

  .page-online-games-lottery__hero-description {
    font-size: 1em;
  }

  .page-online-games-lottery__hero-actions {
    flex-direction: column;
  }

  .page-online-games-lottery__btn {
    width: 80%;
  }

  .page-online-games-lottery__section {
    padding: 60px 15px;
  }

  .page-online-games-lottery__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-online-games-lottery__features, .page-online-games-lottery__game-grid, .page-online-games-lottery__guide-steps {
    grid-template-columns: 1fr;
  }

  .page-online-games-lottery__feature-item, .page-online-games-lottery__game-card, .page-online-games-lottery__step-item, .page-online-games-lottery__faq-item {
    padding: 20px;
  }

  .page-online-games-lottery__cta-bottom .page-online-games-lottery__cta-title {
    font-size: 2.2em;
  }

  .page-online-games-lottery__cta-bottom .page-online-games-lottery__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-online-games-lottery__hero-title {
    font-size: 1.8em;
  }

  .page-online-games-lottery__btn {
    width: 90%;
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-online-games-lottery__section-title {
    font-size: 1.5em;
  }

  .page-online-games-lottery__feature-title, .page-online-games-lottery__game-title, .page-online-games-lottery__step-title {
    font-size: 1.3em;
  }

  .page-online-games-lottery__tips-list li, .page-online-games-lottery__promotion-list li, .page-online-games-lottery__faq-question, .page-online-games-lottery__faq-answer {
    font-size: 0.9em;
  }

  .page-online-games-lottery__cta-bottom .page-online-games-lottery__cta-title {
    font-size: 1.8em;
  }
}