/* style/lottery-games-quick-buy.css */
.page-lottery-games-quick-buy {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text on dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

.page-lottery-games-quick-buy__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1E90FF, #0028ff);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-games-quick-buy__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-lottery-games-quick-buy__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-games-quick-buy__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-lottery-games-quick-buy__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-lottery-games-quick-buy__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-lottery-games-quick-buy__button--primary {
  background-color: #FFD700; /* Gold */
  color: #333333; /* Dark text on gold */
  border: 2px solid #FFD700;
}

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

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

.page-lottery-games-quick-buy__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-lottery-games-quick-buy__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  z-index: 0; /* Behind text */
}

.page-lottery-games-quick-buy__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-lottery-games-quick-buy__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold */
  margin-bottom: 40px;
  position: relative;
}

.page-lottery-games-quick-buy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #1E90FF; /* Blue */
  border-radius: 2px;
}

.page-lottery-games-quick-buy__section-intro {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #cccccc;
}

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

.page-lottery-games-quick-buy__feature-item,
.page-lottery-games-quick-buy__game-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-lottery-games-quick-buy__feature-item:hover,
.page-lottery-games-quick-buy__game-card:hover {
  transform: translateY(-8px);
  background-color: #333333;
}

.page-lottery-games-quick-buy__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-lottery-games-quick-buy__feature-title,
.page-lottery-games-quick-buy__game-card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-lottery-games-quick-buy__feature-item p,
.page-lottery-games-quick-buy__game-card p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-lottery-games-quick-buy__how-to {
  background-color: #222222;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

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

.page-lottery-games-quick-buy__step-item {
  background-color: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.page-lottery-games-quick-buy__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #1E90FF; /* Blue */
  margin-bottom: 15px;
}

.page-lottery-games-quick-buy__step-title {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.page-lottery-games-quick-buy__step-item p {
  color: #cccccc;
}

.page-lottery-games-quick-buy__text-link {
  color: #1E90FF; /* Blue link */
  text-decoration: none;
  font-weight: bold;
}

.page-lottery-games-quick-buy__text-link:hover {
  text-decoration: underline;
  color: #62b1ff;
}

.page-lottery-games-quick-buy__cta-bottom {
  margin-top: 60px;
}

.page-lottery-games-quick-buy__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: brightness(0.8) contrast(1.1);
}

.page-lottery-games-quick-buy__responsibility p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #cccccc;
  font-size: 1.05em;
}

.page-lottery-games-quick-buy__app-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, #1E90FF, #0028ff);
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  margin: 80px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.page-lottery-games-quick-buy__app-content {
  max-width: 700px;
}

.page-lottery-games-quick-buy__app-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-lottery-games-quick-buy__app-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-lottery-games-quick-buy__app-image-wrapper {
  margin-top: 40px;
  max-width: 400px;
  width: 100%;
}

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

.page-lottery-games-quick-buy__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-lottery-games-quick-buy__faq-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-games-quick-buy__faq-question {
  font-size: 1.2em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-lottery-games-quick-buy__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-lottery-games-quick-buy__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-lottery-games-quick-buy__faq-answer {
  color: #cccccc;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-lottery-games-quick-buy__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-lottery-games-quick-buy__cta-final {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 80px 20px;
  margin-top: 80px;
}

.page-lottery-games-quick-buy__cta-final .page-lottery-games-quick-buy__section-title {
  color: #FFD700; /* Gold */
}

.page-lottery-games-quick-buy__cta-final .page-lottery-games-quick-buy__section-title::after {
  background-color: #FFD700;
}

.page-lottery-games-quick-buy__cta-final .page-lottery-games-quick-buy__section-description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.15em;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-quick-buy__hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .page-lottery-games-quick-buy__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-lottery-games-quick-buy__hero-title {
    font-size: 2.2em;
  }

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

  .page-lottery-games-quick-buy__app-promo {
    flex-direction: column;
    text-align: center;
  }

  .page-lottery-games-quick-buy__app-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-quick-buy__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-lottery-games-quick-buy__button {
    width: 100%;
    max-width: 280px;
  }

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

  .page-lottery-games-quick-buy__hero-description {
    font-size: 1em;
  }

  .page-lottery-games-quick-buy__section {
    padding: 60px 15px;
  }

  .page-lottery-games-quick-buy__section-title {
    font-size: 1.6em;
  }

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

@media (max-width: 480px) {
  .page-lottery-games-quick-buy__hero-title {
    font-size: 1.5em;
  }

  .page-lottery-games-quick-buy__section-title {
    font-size: 1.4em;
  }

  .page-lottery-games-quick-buy__feature-title,
  .page-lottery-games-quick-buy__game-card-title {
    font-size: 1.3em;
  }

  .page-lottery-games-quick-buy__step-title {
    font-size: 1.1em;
  }
}