/* style/lottery-buying-guide.css */
.page-lottery-buying-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #1a1a1a; /* Very dark background */
}

.page-lottery-buying-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-lottery-buying-guide__hero {
  background: linear-gradient(135deg, #CC0000 0%, #800000 100%); /* Darker red gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-lottery-buying-guide__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(204, 0, 0, 0.05) 50%, transparent 70%);
  animation: page-lottery-buying-guide__pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes page-lottery-buying-guide__pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.page-lottery-buying-guide__hero > * {
  position: relative;
  z-index: 1;
}

.page-lottery-buying-guide__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-buying-guide__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #FFFFFF;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-buying-guide__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-lottery-buying-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  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-buying-guide__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #CC0000; /* Red text on gold */
  border: 2px solid #FFD700;
}

.page-lottery-buying-guide__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-lottery-buying-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-lottery-buying-guide__section {
  padding: 60px 0;
  background-color: #222222;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-lottery-buying-guide__section:nth-of-type(even) {
  background-color: #2c2c2c;
}

.page-lottery-buying-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-lottery-buying-guide__sub-title {
  font-size: 1.8em;
  color: #CC0000; /* Red for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-lottery-buying-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-lottery-buying-guide__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-lottery-buying-guide__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-lottery-buying-guide__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-lottery-buying-guide__list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-lottery-buying-guide__list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-lottery-buying-guide__list--tips li::before {
  content: '💡';
  color: #FFD700;
}

.page-lottery-buying-guide__image-wrapper {
  text-align: center;
}

.page-lottery-buying-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-lottery-buying-guide__image--full-width {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
}

.page-lottery-buying-guide__image--small {
  max-width: 600px;
  margin: 30px auto;
  display: block;
}

.page-lottery-buying-guide__step-list {
  list-style: none;
  padding-left: 0;
}

.page-lottery-buying-guide__step-item {
  background-color: #333333;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-lottery-buying-guide__step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #CC0000;
}

.page-lottery-buying-guide__step-title {
  font-size: 2em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-lottery-buying-guide__step-item p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-lottery-buying-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-buying-guide__button--inline {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 20px;
}

.page-lottery-buying-guide__faq-item {
  background-color: #333333;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-buying-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-lottery-buying-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #CC0000;
  transition: transform 0.3s ease;
}

.page-lottery-buying-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-lottery-buying-guide__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #444444;
  margin-top: 10px;
}

.page-lottery-buying-guide__faq-answer.active {
  display: block;
}

.page-lottery-buying-guide__text-center {
  text-align: center;
}

.page-lottery-buying-guide__final-cta {
  padding: 80px 0;
  background: linear-gradient(45deg, #CC0000 0%, #FFD700 100%); /* Red to Gold gradient */
  color: #1a1a1a; /* Dark text on light gradient */
  border-radius: 0;
}

.page-lottery-buying-guide__final-cta .page-lottery-buying-guide__section-title {
  color: #1a1a1a;
  text-shadow: none;
}

.page-lottery-buying-guide__final-cta p {
  color: #333333;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-lottery-buying-guide__final-cta .page-lottery-buying-guide__button--primary {
  background-color: #1a1a1a;
  color: #FFD700;
  border-color: #1a1a1a;
}

.page-lottery-buying-guide__final-cta .page-lottery-buying-guide__button--primary:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFD700;
}

.page-lottery-buying-guide__final-cta .page-lottery-buying-guide__button--secondary {
  background-color: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.page-lottery-buying-guide__final-cta .page-lottery-buying-guide__button--secondary:hover {
  background-color: #1a1a1a;
  color: #FFD700;
}

.page-lottery-buying-guide__disclaimer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #555555;
}

.highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-lottery-buying-guide__title {
    font-size: 2.8em;
  }
  .page-lottery-buying-guide__subtitle {
    font-size: 1.3em;
  }
  .page-lottery-buying-guide__section-title {
    font-size: 2em;
  }
  .page-lottery-buying-guide__sub-title {
    font-size: 1.5em;
  }
  .page-lottery-buying-guide__content-grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-buying-guide__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-lottery-buying-guide__image-wrapper {
    order: -1; /* Image first on mobile for reverse grid */
  }
}

@media (max-width: 768px) {
  .page-lottery-buying-guide__hero {
    padding: 80px 0;
  }
  .page-lottery-buying-guide__title {
    font-size: 2.2em;
  }
  .page-lottery-buying-guide__subtitle {
    font-size: 1.1em;
  }
  .page-lottery-buying-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-lottery-buying-guide__section {
    padding: 40px 0;
  }
  .page-lottery-buying-guide__section-title {
    font-size: 1.8em;
  }
  .page-lottery-buying-guide__sub-title {
    font-size: 1.3em;
  }
  .page-lottery-buying-guide__step-title {
    font-size: 1.6em;
  }
}

@media (max-width: 480px) {
  .page-lottery-buying-guide__hero {
    padding: 60px 0;
  }
  .page-lottery-buying-guide__title {
    font-size: 1.8em;
  }
  .page-lottery-buying-guide__subtitle {
    font-size: 0.9em;
  }
  .page-lottery-buying-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-buying-guide__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-lottery-buying-guide__section-title {
    font-size: 1.5em;
  }
  .page-lottery-buying-guide__sub-title {
    font-size: 1.2em;
  }
  .page-lottery-buying-guide__step-title {
    font-size: 1.4em;
  }
  .page-lottery-buying-guide__faq-question {
    font-size: 1.1em;
  }
  .page-lottery-buying-guide__faq-answer {
    font-size: 0.9em;
  }
}