/* style/blog-92lottery-official-homepage-guide.css */

/* Base styles for the page */
.page-blog-92lottery-official-homepage-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0; /* Handled by body padding-top in shared.css */
}

.page-blog-92lottery-official-homepage-guide__hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small decorative padding, not header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Background */
  box-sizing: border-box;
}

.page-blog-92lottery-official-homepage-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for hero image */
}

.page-blog-92lottery-official-homepage-guide__hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-92lottery-official-homepage-guide__main-title {
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
}

.page-blog-92lottery-official-homepage-guide__description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-92lottery-official-homepage-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-92lottery-official-homepage-guide__btn-primary,
.page-blog-92lottery-official-homepage-guide__btn-secondary {
  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;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-92lottery-official-homepage-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-blog-92lottery-official-homepage-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-blog-92lottery-official-homepage-guide__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button color for text */
  border: 2px solid #2AD16F; /* Border color */
}

.page-blog-92lottery-official-homepage-guide__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-blog-92lottery-official-homepage-guide__btn-block {
  display: block;
  width: 100%;
  max-width: 300px; /* Limit width for block buttons */
  margin: 20px auto;
}

.page-blog-92lottery-official-homepage-guide__content-area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-92lottery-official-homepage-guide__section-title {
  color: #F2FFF6; /* Text Main */
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 15px;
  margin-top: 40px;
}

.page-blog-92lottery-official-homepage-guide__sub-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-92lottery-official-homepage-guide__paragraph {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-blog-92lottery-official-homepage-guide__paragraph strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-92lottery-official-homepage-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-92lottery-official-homepage-guide__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-92lottery-official-homepage-guide__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure it's a block element */
}

.page-blog-92lottery-official-homepage-guide__card-title {
  color: #F2FFF6; /* Text Main */
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-92lottery-official-homepage-guide__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-blog-92lottery-official-homepage-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 10px;
}

.page-blog-92lottery-official-homepage-guide__app-download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-92lottery-official-homepage-guide__faq-list {
  margin-top: 40px;
}

.page-blog-92lottery-official-homepage-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-92lottery-official-homepage-guide__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  background-color: #1E3A2A; /* Divider for summary background */
}

.page-blog-92lottery-official-homepage-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-92lottery-official-homepage-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #57E38D; /* Glow */
}

.page-blog-92lottery-official-homepage-guide__faq-answer {
  padding: 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.7;
  border-top: 1px solid #2E7A4E; /* Border */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-92lottery-official-homepage-guide__hero-content {
    padding: 30px 15px;
  }

  .page-blog-92lottery-official-homepage-guide__content-area {
    padding: 40px 15px;
  }

  .page-blog-92lottery-official-homepage-guide__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-blog-92lottery-official-homepage-guide__section-title {
    font-size: 2em;
  }

  .page-blog-92lottery-official-homepage-guide__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-92lottery-official-homepage-guide__hero-section {
    padding-bottom: 40px;
  }
  
  .page-blog-92lottery-official-homepage-guide__hero-image {
    max-height: 400px; /* Adjust height for smaller screens */
  }

  .page-blog-92lottery-official-homepage-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }

  .page-blog-92lottery-official-homepage-guide__description {
    font-size: 1em;
  }

  .page-blog-92lottery-official-homepage-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-92lottery-official-homepage-guide__btn-primary,
  .page-blog-92lottery-official-homepage-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-92lottery-official-homepage-guide__btn-block {
    max-width: 100%;
  }

  .page-blog-92lottery-official-homepage-guide__content-area {
    padding: 30px 15px;
  }

  .page-blog-92lottery-official-homepage-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-92lottery-official-homepage-guide__sub-title {
    font-size: 1.4em;
  }

  .page-blog-92lottery-official-homepage-guide__paragraph {
    font-size: 0.95em;
  }

  .page-blog-92lottery-official-homepage-guide__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-92lottery-official-homepage-guide__card {
    padding: 20px;
  }

  .page-blog-92lottery-official-homepage-guide__card-image {
    height: 200px;
  }

  .page-blog-92lottery-official-homepage-guide__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .page-blog-92lottery-official-homepage-guide__app-download-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-92lottery-official-homepage-guide__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-92lottery-official-homepage-guide__faq-answer {
    padding: 15px;
  }

  /* Ensure all containers with images/videos/buttons are constrained */
  .page-blog-92lottery-official-homepage-guide__hero-section,
  .page-blog-92lottery-official-homepage-guide__content-area,
  .page-blog-92lottery-official-homepage-guide__feature-grid,
  .page-blog-92lottery-official-homepage-guide__card,
  .page-blog-92lottery-official-homepage-guide__section-content,
  .page-blog-92lottery-official-homepage-guide__faq-list,
  .page-blog-92lottery-official-homepage-guide__app-download-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  
  .page-blog-92lottery-official-homepage-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-92lottery-official-homepage-guide video,
  .page-blog-92lottery-official-homepage-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-92lottery-official-homepage-guide__video-section,
  .page-blog-92lottery-official-homepage-guide__video-container,
  .page-blog-92lottery-official-homepage-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-92lottery-official-homepage-guide__video-section {
    padding-top: 10px !important;
  }
}

/* Color Contrast Fixes if needed */
.page-blog-92lottery-official-homepage-guide__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-92lottery-official-homepage-guide__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}