.page-betting-strategies-lottery {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A2239;
  line-height: 1.6;
}

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

.page-betting-strategies-lottery__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 70%, #FFD700 100%);
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-betting-strategies-lottery__hero-content {
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-betting-strategies-lottery__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-strategies-lottery__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-betting-strategies-lottery__hero-image {
  max-width: 100%;
  height: auto;
  opacity: 0.7;
  transform: translateX(10%);
}

.page-betting-strategies-lottery__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-betting-strategies-lottery__btn--primary {
  background-color: #FFD700;
  color: #0A2239;
  border: 2px solid #FFD700;
}

.page-betting-strategies-lottery__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

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

.page-betting-strategies-lottery__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
}

.page-betting-strategies-lottery__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-betting-strategies-lottery__section:last-of-type {
  border-bottom: none;
}

.page-betting-strategies-lottery__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-betting-strategies-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-betting-strategies-lottery__introduction p,
.page-betting-strategies-lottery__betting-management p,
.page-betting-strategies-lottery__probability-analysis p,
.page-betting-strategies-lottery__promotions p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-betting-strategies-lottery__introduction p strong,
.page-betting-strategies-lottery__betting-management p strong,
.page-betting-strategies-lottery__probability-analysis p strong,
.page-betting-strategies-lottery__promotions p strong {
  color: #FFD700;
}

.page-betting-strategies-lottery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-strategies-lottery__card {
  background-color: #1A3A5A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-betting-strategies-lottery__card:hover {
  transform: translateY(-10px);
  background-color: #2A4A6A;
}

.page-betting-strategies-lottery__card-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-betting-strategies-lottery__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-betting-strategies-lottery__card p {
  font-size: 1em;
  color: #E0E0E0;
  text-align: center;
}

.page-betting-strategies-lottery__content-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-betting-strategies-lottery__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-betting-strategies-lottery__text-content {
  flex: 1;
}

.page-betting-strategies-lottery__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-betting-strategies-lottery__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-betting-strategies-lottery__sub-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-betting-strategies-lottery__text-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-betting-strategies-lottery__text-content ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-betting-strategies-lottery__text-content ul li strong {
  color: #FFD700;
}

.page-betting-strategies-lottery__text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-betting-strategies-lottery__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-strategies-lottery__promo-card {
  background-color: #1A3A5A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-betting-strategies-lottery__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-betting-strategies-lottery__promo-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-betting-strategies-lottery__cta {
  background-color: #1A3A5A;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.page-betting-strategies-lottery__cta-content {
  z-index: 10;
  max-width: 700px;
  margin: 0;
  text-align: left;
}

.page-betting-strategies-lottery__cta-content .page-betting-strategies-lottery__section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-betting-strategies-lottery__cta-content .page-betting-strategies-lottery__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-betting-strategies-lottery__cta-image {
  width: 40%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.page-betting-strategies-lottery__download-app-text {
  margin-top: 30px;
  font-size: 1.2em;
  color: #F0F0F0;
}

.page-betting-strategies-lottery__download-app-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-betting-strategies-lottery__download-app-text a:hover {
  text-decoration: underline;
}

.page-betting-strategies-lottery__faq-item {
  background-color: #1A3A5A;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-betting-strategies-lottery__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
  display: none;
  padding-top: 10px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-strategies-lottery__hero {
    flex-direction: column;
    padding: 60px 0;
    min-height: auto;
  }
  .page-betting-strategies-lottery__hero-image-wrapper {
    position: static;
    width: 80%;
    height: auto;
    margin-top: 40px;
    transform: translateX(0);
  }
  .page-betting-strategies-lottery__hero-title {
    font-size: 2.8em;
  }
  .page-betting-strategies-lottery__hero-subtitle {
    font-size: 1.3em;
  }
  .page-betting-strategies-lottery__content-grid {
    flex-direction: column;
  }
  .page-betting-strategies-lottery__content-grid--reverse {
    flex-direction: column;
  }
  .page-betting-strategies-lottery__cta {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-betting-strategies-lottery__cta-content {
    text-align: center;
    max-width: 100%;
  }
  .page-betting-strategies-lottery__cta-content .page-betting-strategies-lottery__section-title {
    text-align: center;
  }
  .page-betting-strategies-lottery__cta-content .page-betting-strategies-lottery__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-betting-strategies-lottery__cta-image {
    width: 70%;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-betting-strategies-lottery__hero-title {
    font-size: 2.2em;
  }
  .page-betting-strategies-lottery__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-strategies-lottery__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-strategies-lottery__section-title {
    font-size: 2em;
  }
  .page-betting-strategies-lottery__sub-title {
    font-size: 1.4em;
  }
  .page-betting-strategies-lottery__text-content ul li,
  .page-betting-strategies-lottery__text-content p,
  .page-betting-strategies-lottery__introduction p,
  .page-betting-strategies-lottery__betting-management p,
  .page-betting-strategies-lottery__probability-analysis p,
  .page-betting-strategies-lottery__promotions p {
    font-size: 1em;
  }
  .page-betting-strategies-lottery__grid,
  .page-betting-strategies-lottery__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-betting-strategies-lottery__hero {
    padding: 40px 0;
  }
  .page-betting-strategies-lottery__hero-title {
    font-size: 1.8em;
  }
  .page-betting-strategies-lottery__hero-subtitle {
    font-size: 0.9em;
  }
  .page-betting-strategies-lottery__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-betting-strategies-lottery__section-title {
    font-size: 1.8em;
  }
  .page-betting-strategies-lottery__card-title,
  .page-betting-strategies-lottery__promo-title {
    font-size: 1.5em;
  }
  .page-betting-strategies-lottery__cta-image {
    width: 90%;
  }
}