.page-lottery-results-other-lotteries {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for dark background */
  background-color: #1a0033; /* Darker variant of primary color */
}

.page-lottery-results-other-lotteries__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-results-other-lotteries__hero-section {
  background: linear-gradient(135deg, #4B0082, #2e004d); /* Primary color gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-lottery-results-other-lotteries__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-lottery-results-other-lotteries__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-lottery-results-other-lotteries__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-lottery-results-other-lotteries__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-results-other-lotteries__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #4B0082; /* Deep Purple */
}

.page-lottery-results-other-lotteries__btn--primary:hover {
  background-color: #ffe033;
  transform: translateY(-3px);
}

.page-lottery-results-other-lotteries__btn--secondary {
  background-color: #4B0082; /* Deep Purple */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-lottery-results-other-lotteries__btn--secondary:hover {
  background-color: #5c00a0;
  transform: translateY(-3px);
}

.page-lottery-results-other-lotteries__content-section {
  padding: 60px 0;
  background-color: #1a0033;
}

.page-lottery-results-other-lotteries__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-lottery-results-other-lotteries__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-lottery-results-other-lotteries__text-block a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-lottery-results-other-lotteries__text-block a:hover {
  text-decoration: underline;
}

.page-lottery-results-other-lotteries__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-lottery-results-other-lotteries__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #2e004d;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-results-other-lotteries__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-lottery-results-other-lotteries__image {
  flex: 1;
  max-width: 45%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: auto;
  object-fit: cover;
}

.page-lottery-results-other-lotteries__text-content {
  flex: 1;
  max-width: 55%;
}

.page-lottery-results-other-lotteries__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery-results-other-lotteries__text-content ul {
  list-style: none;
  padding-left: 0;
}

.page-lottery-results-other-lotteries__text-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #e0e0e0;
}

.page-lottery-results-other-lotteries__text-content ul li::before {
  content: '⚡'; /* Or any suitable icon */
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-lottery-results-other-lotteries__ordered-list {
  list-style-type: decimal;
  padding-left: 30px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-lottery-results-other-lotteries__ordered-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-lottery-results-other-lotteries__image-center {
  text-align: center;
  margin: 40px 0;
}

.page-lottery-results-other-lotteries__image--large {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-results-other-lotteries__button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.page-lottery-results-other-lotteries__btn--grid {
  background-color: #FFD700;
  color: #4B0082;
  text-align: center;
  padding: 20px 15px;
  font-size: 1.2em;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-results-other-lotteries__btn--grid:hover {
  background-color: #ffe033;
  transform: translateY(-5px) scale(1.02);
}

.page-lottery-results-other-lotteries__faq-item {
  background-color: #2e004d; /* Darker primary variant */
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-lottery-results-other-lotteries__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-lottery-results-other-lotteries__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-lottery-results-other-lotteries__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-lottery-results-other-lotteries__faq-answer {
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
  display: none;
  margin-top: 15px;
}

.page-lottery-results-other-lotteries__faq-answer.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-results-other-lotteries__hero-title {
    font-size: 2.5em;
  }
  .page-lottery-results-other-lotteries__hero-subtitle {
    font-size: 1.1em;
  }
  .page-lottery-results-other-lotteries__section-title {
    font-size: 2em;
  }
  .page-lottery-results-other-lotteries__image-text-block {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .page-lottery-results-other-lotteries__image-text-block--reverse {
    flex-direction: column;
  }
  .page-lottery-results-other-lotteries__image,
  .page-lottery-results-other-lotteries__text-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-lottery-results-other-lotteries__hero-section {
    padding: 60px 0;
  }
  .page-lottery-results-other-lotteries__hero-title {
    font-size: 2em;
  }
  .page-lottery-results-other-lotteries__hero-subtitle {
    font-size: 1em;
  }
  .page-lottery-results-other-lotteries__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-results-other-lotteries__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-results-other-lotteries__section-title {
    font-size: 1.8em;
  }
  .page-lottery-results-other-lotteries__text-block,
  .page-lottery-results-other-lotteries__text-content ul li,
  .page-lottery-results-other-lotteries__ordered-list li,
  .page-lottery-results-other-lotteries__faq-answer {
    font-size: 0.95em;
  }
  .page-lottery-results-other-lotteries__sub-title {
    font-size: 1.5em;
  }
  .page-lottery-results-other-lotteries__faq-question {
    font-size: 1.2em;
  }
  .page-lottery-results-other-lotteries__button-grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-results-other-lotteries__image--large {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-lottery-results-other-lotteries__hero-title {
    font-size: 1.8em;
  }
  .page-lottery-results-other-lotteries__hero-subtitle {
    font-size: 0.9em;
  }
  .page-lottery-results-other-lotteries__section-title {
    font-size: 1.5em;
  }
  .page-lottery-results-other-lotteries__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-lottery-results-other-lotteries__image-text-block {
    padding: 15px;
  }
  .page-lottery-results-other-lotteries__faq-item {
    padding: 20px;
  }
}