/* style/lottery-prediction.css */

/* General Page Styles */
.page-lottery-prediction {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is #000 from shared.css */
}

.page-lottery-prediction__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-lottery-prediction__main-heading,
.page-lottery-prediction__section-heading {
  color: #FFD700; /* Gold brand color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-lottery-prediction__main-heading {
  font-size: 3.2em;
  padding-top: 120px; /* Spacing for fixed header */
}

.page-lottery-prediction__section-heading {
  font-size: 2.5em;
}

.page-lottery-prediction__intro-text,
.page-lottery-prediction__section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Buttons */
.page-lottery-prediction__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-lottery-prediction__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-lottery-prediction__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text for contrast */
  border: 2px solid #FFD700;
}

.page-lottery-prediction__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #333333;
  transform: translateY(-2px);
}

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

.page-lottery-prediction__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

/* Sections */
.page-lottery-prediction__intro-section,
.page-lottery-prediction__methods-section,
.page-lottery-prediction__benefits-section,
.page-lottery-prediction__guide-section,
.page-lottery-prediction__lottery-types-section,
.page-lottery-prediction__tips-section,
.page-lottery-prediction__security-section,
.page-lottery-prediction__faq-section,
.page-lottery-prediction__blog-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-lottery-prediction__intro-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
}

.page-lottery-prediction__methods-section,
.page-lottery-prediction__guide-section,
.page-lottery-prediction__tips-section,
.page-lottery-prediction__blog-section {
  background-color: rgba(255, 255, 255, 0.03);
}

.page-lottery-prediction__benefits-section,
.page-lottery-prediction__lottery-types-section,
.page-lottery-prediction__security-section,
.page-lottery-prediction__faq-section {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Method Grid */
.page-lottery-prediction__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-prediction__method-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-lottery-prediction__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-prediction__method-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid #FFD700;
}

.page-lottery-prediction__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery-prediction__card-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Benefits List */
.page-lottery-prediction__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-lottery-prediction__benefits-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.page-lottery-prediction__benefits-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-prediction__benefits-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-lottery-prediction__benefits-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-prediction__benefits-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* Guide Steps */
.page-lottery-prediction__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-prediction__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-lottery-prediction__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-lottery-prediction__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery-prediction__step-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Lottery Types */
.page-lottery-prediction__lottery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-lottery-prediction__lottery-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.page-lottery-prediction__lottery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-prediction__lottery-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-lottery-prediction__lottery-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-lottery-prediction__lottery-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Tips List */
.page-lottery-prediction__tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-lottery-prediction__tips-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-lottery-prediction__tips-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-prediction__tips-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-lottery-prediction__tips-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-prediction__tips-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* Security Features */
.page-lottery-prediction__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-prediction__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
}

.page-lottery-prediction__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-prediction__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-lottery-prediction__feature-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-lottery-prediction__feature-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* FAQ Section */
.page-lottery-prediction__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-lottery-prediction__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-lottery-prediction__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-lottery-prediction__faq-item.active .page-lottery-prediction__faq-answer {
  max-height: 2000px !important; /* Ensure content can fully expand */
  padding: 20px 15px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  color: #e0e0e0;
}

.page-lottery-prediction__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-lottery-prediction__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFD700;
}

.page-lottery-prediction__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-lottery-prediction__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: #FFD700;
}

.page-lottery-prediction__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-lottery-prediction__faq-item.active .page-lottery-prediction__faq-toggle {
  color: #8B0000; /* Dark red when active */
  transform: rotate(45deg); /* Plus sign rotates to X */
}

/* Blog Section */
.page-lottery-prediction__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-lottery-prediction__blog-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(139, 0, 0, 0.3);
  overflow: hidden;
}

.page-lottery-prediction__blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-lottery-prediction__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.page-lottery-prediction__blog-content {
  padding: 25px;
}

.page-lottery-prediction__blog-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-lottery-prediction__blog-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-lottery-prediction__blog-title a:hover {
  color: #e6c200;
}

.page-lottery-prediction__blog-excerpt {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-lottery-prediction__readmore-link {
  color: #8B0000; /* Dark red for read more */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-lottery-prediction__readmore-link:hover {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-lottery-prediction__main-heading {
    font-size: 2.8em;
  }
  .page-lottery-prediction__section-heading {
    font-size: 2em;
  }
  .page-lottery-prediction__intro-text,
  .page-lottery-prediction__section-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-lottery-prediction__container {
    padding: 0 15px;
  }

  .page-lottery-prediction__main-heading {
    font-size: 2em;
    padding-top: 100px; /* Mobile spacing for fixed header */
    margin-bottom: 20px;
  }

  .page-lottery-prediction__section-heading {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-lottery-prediction__intro-text,
  .page-lottery-prediction__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-lottery-prediction__cta-group {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .page-lottery-prediction__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-lottery-prediction__intro-section,
  .page-lottery-prediction__methods-section,
  .page-lottery-prediction__benefits-section,
  .page-lottery-prediction__guide-section,
  .page-lottery-prediction__lottery-types-section,
  .page-lottery-prediction__tips-section,
  .page-lottery-prediction__security-section,
  .page-lottery-prediction__faq-section,
  .page-lottery-prediction__blog-section {
    padding: 40px 0;
  }

  .page-lottery-prediction__method-grid,
  .page-lottery-prediction__benefits-list,
  .page-lottery-prediction__guide-steps,
  .page-lottery-prediction__lottery-list,
  .page-lottery-prediction__tips-list,
  .page-lottery-prediction__security-features,
  .page-lottery-prediction__blog-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .page-lottery-prediction__method-card,
  .page-lottery-prediction__benefits-item,
  .page-lottery-prediction__step-item,
  .page-lottery-prediction__lottery-item,
  .page-lottery-prediction__tips-item,
  .page-lottery-prediction__feature-item,
  .page-lottery-prediction__blog-card {
    padding: 20px;
  }

  .page-lottery-prediction__method-image,
  .page-lottery-prediction__lottery-image {
    max-width: 100%;
    height: auto;
  }

  .page-lottery-prediction__card-title,
  .page-lottery-prediction__benefits-title,
  .page-lottery-prediction__step-title,
  .page-lottery-prediction__lottery-title,
  .page-lottery-prediction__tips-title,
  .page-lottery-prediction__feature-title,
  .page-lottery-prediction__blog-title {
    font-size: 1.2em;
  }

  .page-lottery-prediction__benefits-icon,
  .page-lottery-prediction__tips-icon,
  .page-lottery-prediction__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  /* FAQ Mobile Specifics */
  .page-lottery-prediction__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-lottery-prediction__faq-question h3 {
    font-size: 1.05em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-lottery-prediction__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-lottery-prediction__faq-answer {
    padding: 0 15px;
  }
  
  .page-lottery-prediction__faq-item.active .page-lottery-prediction__faq-answer {
    padding: 15px !important;
  }

  .page-lottery-prediction__blog-image {
    height: 150px;
  }
  .page-lottery-prediction__blog-content {
    padding: 20px;
  }

  /* Responsive images (global for mobile) */
  .page-lottery-prediction img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-lottery-prediction__intro-section,
  .page-lottery-prediction__methods-section,
  .page-lottery-prediction__benefits-section,
  .page-lottery-prediction__guide-section,
  .page-lottery-prediction__lottery-types-section,
  .page-lottery-prediction__tips-section,
  .page-lottery-prediction__security-section,
  .page-lottery-prediction__faq-section,
  .page-lottery-prediction__blog-section,
  .page-lottery-prediction__container,
  .page-lottery-prediction__method-card,
  .page-lottery-prediction__benefits-item,
  .page-lottery-prediction__step-item,
  .page-lottery-prediction__lottery-item,
  .page-lottery-prediction__tips-item,
  .page-lottery-prediction__feature-item,
  .page-lottery-prediction__blog-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-lottery-prediction__main-heading {
    font-size: 1.8em;
  }
  .page-lottery-prediction__section-heading {
    font-size: 1.6em;
  }
}