/* style/blog-44win55-latest-promotions.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* body đã padding-top: var(--header-offset) từ shared.css, không lặp lại tại đây */
.page-blog-44win55-latest-promotions {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); /* Toàn bộ trang sử dụng màu chữ chính */
  background-color: var(--background-color);
}

.page-blog-44win55-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Chỉ 10px padding-top, không dùng --header-offset */
  background-color: var(--deep-green-color);
  overflow: hidden;
}

.page-blog-44win55-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-44win55-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Giảm độ sáng để chữ dễ đọc hơn */
}

.page-blog-44win55-latest-promotions__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Di chuyển nội dung lên trên hình ảnh một chút */
  background: rgba(0, 0, 0, 0.4); /* Nền tối để chữ nổi bật */
  border-radius: 10px;
}

.page-blog-44win55-latest-promotions__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-44win55-latest-promotions__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--text-main-color);
  margin-bottom: 30px;
}

.page-blog-44win55-latest-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-44win55-latest-promotions__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-44win55-latest-promotions__section-title {
  font-size: 2.2em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-44win55-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--button-gradient);
  border-radius: 2px;
}

.page-blog-44win55-latest-promotions__sub-section-title {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-blog-44win55-latest-promotions p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-blog-44win55-latest-promotions a {
  color: var(--glow-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-44win55-latest-promotions a:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-blog-44win55-latest-promotions__list,
.page-blog-44win55-latest-promotions__ordered-list,
.page-blog-44win55-latest-promotions__features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-44win55-latest-promotions__list li,
.page-blog-44win55-latest-promotions__ordered-list li,
.page-blog-44win55-latest-promotions__features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-main-color);
}

.page-blog-44win55-latest-promotions__list li::before,
.page-blog-44win55-latest-promotions__features-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: var(--glow-color);
}

.page-blog-44win55-latest-promotions__ordered-list li::before {
  content: counter(list-item) '. ';
  counter-increment: list-item;
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--gold-color);
}

.page-blog-44win55-latest-promotions__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color);
}

.page-blog-44win55-latest-promotions__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-44win55-latest-promotions__card-title {
  font-size: 1.5em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-44win55-latest-promotions__btn-primary {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-44win55-latest-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
  color: var(--text-main-color); /* Giữ màu chữ không đổi khi hover */
  text-decoration: none;
}

.page-blog-44win55-latest-promotions__cta-bottom {
  display: block;
  margin-top: 50px;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-44win55-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-44win55-latest-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-44win55-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--gold-color);
  background-color: var(--deep-green-color);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-44win55-latest-promotions__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-44win55-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-44win55-latest-promotions__faq-item[open] .page-blog-44win55-latest-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-44win55-latest-promotions__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--text-secondary-color);
  border-top: 1px solid var(--border-color);
}

/* =======================================
   Responsive Design - Mobile First
   ======================================= */

/* Default styles for larger screens */

/* Mobile-specific styles */
@media (max-width: 768px) {
  .page-blog-44win55-latest-promotions {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-blog-44win55-latest-promotions__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-44win55-latest-promotions__hero-content {
    margin-top: -100px;
    padding: 15px;
    max-width: 100%;
    width: calc(100% - 30px); /* Account for padding */
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-blog-44win55-latest-promotions__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-blog-44win55-latest-promotions__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-44win55-latest-promotions__content-area {
    padding: 30px 15px;
  }

  .page-blog-44win55-latest-promotions__container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-44win55-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-44win55-latest-promotions__sub-section-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 10px;
  }

  .page-blog-44win55-latest-promotions__card {
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .page-blog-44win55-latest-promotions__card-title {
    font-size: 1.3em;
  }

  /* Responsive Images */
  .page-blog-44win55-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-44win55-latest-promotions__hero-image-wrapper,
  .page-blog-44win55-latest-promotions__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* Responsive Buttons */
  .page-blog-44win55-latest-promotions__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 15px !important;
    font-size: 1em !important;
  }

  .page-blog-44win55-latest-promotions__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-blog-44win55-latest-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-44win55-latest-promotions__faq-answer {
    padding: 10px 20px 15px 20px;
  }

  .page-blog-44win55-latest-promotions__list li,
  .page-blog-44win55-latest-promotions__ordered-list li,
  .page-blog-44win55-latest-promotions__features-list li {
    padding-left: 25px;
  }
}