/* style/blog-luck8882-official-website-analysis.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-luck8882-official-website-analysis {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Hero Section */
.page-blog-luck8882-official-website-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  background: #000000; /* Ensure hero section background is dark */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-luck8882-official-website-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-blog-luck8882-official-website-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-luck8882-official-website-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: -200px; /* Overlap with image slightly for design effect, but not cover text */
  color: #ffffff;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  border-radius: 10px;
}

.page-blog-luck8882-official-website-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-luck8882-official-website-analysis__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-luck8882-official-website-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-luck8882-official-website-analysis__btn-primary,
.page-blog-luck8882-official-website-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-luck8882-official-website-analysis__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-luck8882-official-website-analysis__btn-primary:hover {
  background-color: #1a7fb0;
  transform: translateY(-2px);
}

.page-blog-luck8882-official-website-analysis__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-luck8882-official-website-analysis__btn-secondary:hover {
  background-color: rgba(38, 169, 224, 0.1);
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-luck8882-official-website-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* Light background for main content text */
  color: #333333; /* Dark text for readability on light background */
  box-sizing: border-box;
}

.page-blog-luck8882-official-website-analysis__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-luck8882-official-website-analysis__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-luck8882-official-website-analysis__sub-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-luck8882-official-website-analysis__paragraph {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-blog-luck8882-official-website-analysis__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-blog-luck8882-official-website-analysis__list,
.page-blog-luck8882-official-website-analysis__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-luck8882-official-website-analysis__ordered-list {
  list-style-type: decimal;
}

.page-blog-luck8882-official-website-analysis__list-item {
  margin-bottom: 10px;
}

.page-blog-luck8882-official-website-analysis__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog-luck8882-official-website-analysis__image-inline {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-luck8882-official-website-analysis__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-luck8882-official-website-analysis__game-card,
.page-blog-luck8882-official-website-analysis__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}

.page-blog-luck8882-official-website-analysis__game-card:hover,
.page-blog-luck8882-official-website-analysis__promo-card:hover {
  transform: translateY(-5px);
}

.page-blog-luck8882-official-website-analysis__game-image,
.page-blog-luck8882-official-website-analysis__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-blog-luck8882-official-website-analysis__game-title,
.page-blog-luck8882-official-website-analysis__promo-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-blog-luck8882-official-website-analysis__game-description,
.page-blog-luck8882-official-website-analysis__promo-description {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-luck8882-official-website-analysis__btn-small {
  display: inline-block;
  padding: 8px 15px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-luck8882-official-website-analysis__btn-small:hover {
  background-color: #1a7fb0;
}

.page-blog-luck8882-official-website-analysis__btn-block {
  display: block;
  width: fit-content;
  margin: 30px auto;
}

.page-blog-luck8882-official-website-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-luck8882-official-website-analysis__cta-final {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-luck8882-official-website-analysis__faq-section {
  margin-top: 60px;
  padding: 40px;
  background-color: #f0f8ff; /* Light blue background for FAQ */
  border-radius: 10px;
  color: #333333; /* Dark text for readability */
}

.page-blog-luck8882-official-website-analysis__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-luck8882-official-website-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #e6f7ff;
  border-bottom: 1px solid #d0eaff;
}

.page-blog-luck8882-official-website-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-luck8882-official-website-analysis__faq-question::marker {
  display: none;
}

.page-blog-luck8882-official-website-analysis__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.page-blog-luck8882-official-website-analysis__faq-item[open] .page-blog-luck8882-official-website-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-luck8882-official-website-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-luck8882-official-website-analysis__hero-content {
    margin-top: -150px;
    max-width: 700px;
  }
  .page-blog-luck8882-official-website-analysis__image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-luck8882-official-website-analysis__image-inline {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-luck8882-official-website-analysis {
    font-size: 15px;
  }

  .page-blog-luck8882-official-website-analysis__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-luck8882-official-website-analysis__hero-content {
    margin-top: -100px;
    padding: 15px;
  }

  .page-blog-luck8882-official-website-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-luck8882-official-website-analysis__description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 20px;
  }

  .page-blog-luck8882-official-website-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-luck8882-official-website-analysis__btn-primary,
  .page-blog-luck8882-official-website-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-blog-luck8882-official-website-analysis__content-area {
    padding: 30px 15px;
  }

  .page-blog-luck8882-official-website-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-luck8882-official-website-analysis__sub-title {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-luck8882-official-website-analysis__image-text-block {
    gap: 20px;
  }

  .page-blog-luck8882-official-website-analysis__game-showcase,
  .page-blog-luck8882-official-website-analysis__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-luck8882-official-website-analysis__game-image,
  .page-blog-luck8882-official-website-analysis__promo-image,
  .page-blog-luck8882-official-website-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-luck8882-official-website-analysis__section,
  .page-blog-luck8882-official-website-analysis__card,
  .page-blog-luck8882-official-website-analysis__container,
  .page-blog-luck8882-official-website-analysis__game-card,
  .page-blog-luck8882-official-website-analysis__promo-card,
  .page-blog-luck8882-official-website-analysis__faq-section,
  .page-blog-luck8882-official-website-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-luck8882-official-website-analysis__faq-section {
    padding: 20px 15px;
  }

  .page-blog-luck8882-official-website-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-luck8882-official-website-analysis__faq-answer {
    padding: 15px 20px;
  }
  .page-blog-luck8882-official-website-analysis__btn-block {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-blog-luck8882-official-website-analysis__hero-content {
    margin-top: -80px;
  }
  .page-blog-luck8882-official-website-analysis__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-luck8882-official-website-analysis__description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
}

/* Ensure no filter on images */
.page-blog-luck8882-official-website-analysis img {
  filter: none; /* Explicitly remove any filters */
}

/* Specific button color for 'Đăng Ký Ngay' */
.page-blog-luck8882-official-website-analysis__btn-primary[href*="redirect"] {
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-blog-luck8882-official-website-analysis__btn-primary[href*="redirect"]:hover {
  background-color: #c76706;
  border-color: #c76706;
}

.page-blog-luck8882-official-website-analysis__btn-secondary[href*="redirect"] {
  color: #EA7C07;
  border-color: #EA7C07;
}

.page-blog-luck8882-official-website-analysis__btn-secondary[href*="redirect"]:hover {
  background-color: rgba(234, 124, 7, 0.1);
}

/* CTA final button */
.page-blog-luck8882-official-website-analysis__cta-final .page-blog-luck8882-official-website-analysis__btn-primary {
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-blog-luck8882-official-website-analysis__cta-final .page-blog-luck8882-official-website-analysis__btn-primary:hover {
  background-color: #c76706;
  border-color: #c76706;
}