/* style/lottery-games-quick-buy.css */
.page-lottery-games-quick-buy {
  font-family: 'Arial', sans-serif;
  color: #FFD700; /* Gold text on dark background */
  background-color: #0A2239; /* Deep blue background */
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-lottery-games-quick-buy__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-lottery-games-quick-buy__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-lottery-games-quick-buy__section-description {
  font-size: 1.1em;
  color: #E0E0E0; /* Lighter grey for descriptions */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-lottery-games-quick-buy__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #2A4A6A 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 700px;
}

.page-lottery-games-quick-buy__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-games-quick-buy__hero-subtitle {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-lottery-games-quick-buy__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.page-lottery-games-quick-buy__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-lottery-games-quick-buy__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

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

.page-lottery-games-quick-buy__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-lottery-games-quick-buy__btn--small {
  padding: 10px 25px;
  font-size: 0.95em;
  border-radius: 30px;
}

.page-lottery-games-quick-buy__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
}

.page-lottery-games-quick-buy__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Adjust as needed */
  overflow: hidden;
  z-index: 0;
}

.page-lottery-games-quick-buy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.4;
}

.page-lottery-games-quick-buy__section--why-choose, 
.page-lottery-games-quick-buy__section--how-to, 
.page-lottery-games-quick-buy__section--games, 
.page-lottery-games-quick-buy__section--promotions, 
.page-lottery-games-quick-buy__section--responsible-gambling, 
.page-lottery-games-quick-buy__section--faq {
  background-color: #0A2239;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-lottery-games-quick-buy__feature-item, .page-lottery-games-quick-buy__step-item, .page-lottery-games-quick-buy__game-category-item {
  background-color: #1A3A5A; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 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__step-item:hover, .page-lottery-games-quick-buy__game-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-games-quick-buy__feature-title, .page-lottery-games-quick-buy__step-title, .page-lottery-games-quick-buy__game-category-title, .page-lottery-games-quick-buy__promotion-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-lottery-games-quick-buy__feature-item p, .page-lottery-games-quick-buy__step-item p, .page-lottery-games-quick-buy__game-category-item p, .page-lottery-games-quick-buy__promotion-item p, .page-lottery-games-quick-buy__faq-answer {
  color: #D0D0D0;
  font-size: 1em;
}

.page-lottery-games-quick-buy__step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  background-color: #0A2239;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-lottery-games-quick-buy__promotion-item {
  background-color: #1A3A5A;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-lottery-games-quick-buy__section--app-download .page-lottery-games-quick-buy__container {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-lottery-games-quick-buy__section--app-download .page-lottery-games-quick-buy__container--reverse {
  flex-direction: row-reverse;
}

.page-lottery-games-quick-buy__content-wrapper {
  flex: 1;
}

.page-lottery-games-quick-buy__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-lottery-games-quick-buy__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-lottery-games-quick-buy__section--app-download .page-lottery-games-quick-buy__section-image {
  max-width: 80%;
}

.page-lottery-games-quick-buy__list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-lottery-games-quick-buy__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-lottery-games-quick-buy__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-lottery-games-quick-buy__list--centered {
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-lottery-games-quick-buy__faq-answer {
  margin-top: 15px;
  color: #D0D0D0;
  line-height: 1.7;
}

.page-lottery-games-quick-buy__section--final-cta {
  background-color: #0A2239;
  padding: 100px 0;
}

.page-lottery-games-quick-buy__final-cta-content {
  background-color: #1A3A5A;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-lottery-games-quick-buy__final-cta-group {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-games-quick-buy__hero-title {
    font-size: 2.8em;
  }
  .page-lottery-games-quick-buy__section-title {
    font-size: 2.2em;
  }
  .page-lottery-games-quick-buy__section--app-download .page-lottery-games-quick-buy__container {
    flex-direction: column;
    text-align: center;
  }
  .page-lottery-games-quick-buy__section--app-download .page-lottery-games-quick-buy__container--reverse {
    flex-direction: column;
  }
  .page-lottery-games-quick-buy__list--centered {
    text-align: center;
    padding-left: 0;
  }
  .page-lottery-games-quick-buy__list li {
    padding-left: 0;
  }
  .page-lottery-games-quick-buy__list li::before {
    position: static;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .page-lottery-games-quick-buy__hero-title {
    font-size: 2.2em;
  }
  .page-lottery-games-quick-buy__hero-subtitle {
    font-size: 1.1em;
  }
  .page-lottery-games-quick-buy__section {
    padding: 60px 0;
  }
  .page-lottery-games-quick-buy__section-title {
    font-size: 1.8em;
  }
  .page-lottery-games-quick-buy__section-description {
    font-size: 0.95em;
  }
  .page-lottery-games-quick-buy__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-lottery-games-quick-buy__btn--large {
    padding: 15px 35px;
    font-size: 1em;
  }
  .page-lottery-games-quick-buy__final-cta-content {
    padding: 40px;
  }
  .page-lottery-games-quick-buy__final-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-games-quick-buy__feature-item, .page-lottery-games-quick-buy__step-item, .page-lottery-games-quick-buy__game-category-item, .page-lottery-games-quick-buy__promotion-item, .page-lottery-games-quick-buy__faq-item {
    padding: 20px;
  }
  .page-lottery-games-quick-buy__feature-title, .page-lottery-games-quick-buy__step-title, .page-lottery-games-quick-buy__game-category-title, .page-lottery-games-quick-buy__promotion-title, .page-lottery-games-quick-buy__faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-lottery-games-quick-buy__hero-title {
    font-size: 1.8em;
  }
  .page-lottery-games-quick-buy__hero-subtitle {
    font-size: 0.9em;
  }
  .page-lottery-games-quick-buy__section-title {
    font-size: 1.5em;
  }
  .page-lottery-games-quick-buy__section-description {
    font-size: 0.85em;
  }
  .page-lottery-games-quick-buy__hero-cta-group {
    flex-direction: column;
  }
  .page-lottery-games-quick-buy__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-lottery-games-quick-buy__step-number {
    margin: 0 auto 15px auto;
  }
}