/* style/blog-32win11-game-latest-promotions-analysis.css */
/* body đã padding-top: var(--header-offset); trang này không được viết lại biến đó */

/* Màu sắc tùy chỉnh */
:root {
  --page-bg-color: #08160F; /* Nền chính */
  --card-bg-color: #11271B; /* Nền thẻ */
  --text-main-color: #F2FFF6; /* Văn bản chính */
  --text-secondary-color: #A7D9B8; /* Văn bản phụ */
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Nút */
  --border-color: #2E7A4E; /* Viền */
  --glow-color: #57E38D; /* Hiệu ứng phát sáng */
  --gold-color: #F2C14E; /* Màu vàng */
  --divider-color: #1E3A2A; /* Đường phân cách */
  --deep-green-color: #0A4B2C; /* Xanh lá đậm */
}

.page-blog-32win11-game-latest-promotions-analysis {
  background-color: var(--page-bg-color); /* Sử dụng màu nền tùy chỉnh */
  color: var(--text-main-color); /* Văn bản chính màu sáng */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Đảm bảo tất cả các thẻ img đều có thuộc tính width và height và không dùng filter */
.page-blog-32win11-game-latest-promotions-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
  filter: none;
}

/* Hero Section */
.page-blog-32win11-game-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px; /* Thêm padding dưới để tách biệt với phần tiếp theo */
  padding-top: 10px; /* Top padding as per instruction */
}

.page-blog-32win11-game-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Giới hạn chiều cao để không quá lớn trên desktop */
  overflow: hidden;
}

.page-blog-32win11-game-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto; /* Đảm bảo hình ảnh responsive */
  object-fit: cover; /* Đảm bảo hình ảnh lấp đầy không gian */
}

.page-blog-32win11-game-latest-promotions-analysis__hero-content {
  position: relative; /* Đảm bảo nội dung nằm trên hình ảnh nếu cần */
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Kéo nội dung lên trên hình ảnh một chút để tạo sự liền mạch */
  background: rgba(17, 39, 27, 0.85); /* Card BG với độ trong suốt */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10; /* Đảm bảo nội dung hiển thị trên hình ảnh */
}

.page-blog-32win11-game-latest-promotions-analysis__hero-title {
  font-size: clamp(2rem, 5vw, 3rem); /* H1 font size clamp */
  font-weight: 700;
  color: var(--gold-color); /* Màu vàng cho tiêu đề nổi bật */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-32win11-game-latest-promotions-analysis__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-32win11-game-latest-promotions-analysis__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--text-main-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Button responsive rule */
  box-sizing: border-box; /* Button responsive rule */
  white-space: normal; /* Button responsive rule */
  word-wrap: break-word; /* Button responsive rule */
}

.page-blog-32win11-game-latest-promotions-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* General Section Styling */
.page-blog-32win11-game-latest-promotions-analysis__section {
  padding: 60px 0;
}

.page-blog-32win11-game-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-32win11-game-latest-promotions-analysis__heading {
  font-size: 2.2rem;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-32win11-game-latest-promotions-analysis__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--glow-color);
  border-radius: 2px;
}

.page-blog-32win11-game-latest-promotions-analysis__paragraph {
  font-size: 1.05rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-32win11-game-latest-promotions-analysis__paragraph strong {
  color: var(--text-main-color);
}

/* Promo Card Grid */
.page-blog-32win11-game-latest-promotions-analysis__promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-32win11-game-latest-promotions-analysis__promo-card {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-blog-32win11-game-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-32win11-game-latest-promotions-analysis__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-blog-32win11-game-latest-promotions-analysis__promo-card-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-32win11-game-latest-promotions-analysis__promo-card-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-blog-32win11-game-latest-promotions-analysis__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-blog-32win11-game-latest-promotions-analysis__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--glow-color);
  color: var(--glow-color);
  box-shadow: none;
}

.page-blog-32win11-game-latest-promotions-analysis__cta-button--secondary:hover {
  background: var(--glow-color);
  color: var(--page-bg-color);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}


/* List Section */
.page-blog-32win11-game-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-32win11-game-latest-promotions-analysis__list-item {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--border-color);
}

.page-blog-32win11-game-latest-promotions-analysis__list-item-title {
  font-size: 1.6rem;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-32win11-game-latest-promotions-analysis__list-item-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-blog-32win11-game-latest-promotions-analysis__list-item-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  min-width: 200px;
  min-height: 200px;
}

/* Why Choose Section (Dark Background) */
.page-blog-32win11-game-latest-promotions-analysis__section--why-choose {
  background-color: var(--deep-green-color); /* Sử dụng màu xanh đậm */
  color: var(--text-main-color); /* Chữ màu sáng trên nền đậm */
}

.page-blog-32win11-game-latest-promotions-analysis__section--why-choose .page-blog-32win11-game-latest-promotions-analysis__heading {
  color: var(--glow-color); /* Tiêu đề màu glow trên nền đậm */
}

.page-blog-32win11-game-latest-promotions-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-32win11-game-latest-promotions-analysis__feature-item {
  background-color: rgba(17, 39, 27, 0.7); /* Card BG với độ trong suốt */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-32win11-game-latest-promotions-analysis__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-32win11-game-latest-promotions-analysis__feature-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-32win11-game-latest-promotions-analysis__feature-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
  text-align: center;
}

/* FAQ Section */
.page-blog-32win11-game-latest-promotions-analysis__faq-section {
  background-color: var(--page-bg-color);
}

.page-blog-32win11-game-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-32win11-game-latest-promotions-analysis__faq-item {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-blog-32win11-game-latest-promotions-analysis__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--gold-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-blog-32win11-game-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-32win11-game-latest-promotions-analysis__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Hover effect using border color with transparency */
}

.page-blog-32win11-game-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-32win11-game-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 25px;
  text-align: center;
  color: var(--glow-color);
}

.page-blog-32win11-game-latest-promotions-analysis__faq-item[open] .page-blog-32win11-game-latest-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-32win11-game-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-blog-32win11-game-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section (Light Background - though custom palette uses dark) */
.page-blog-32win11-game-latest-promotions-analysis__section--conclusion {
  background-color: var(--card-bg-color); /* Using card bg for a slightly different shade of dark */
  color: var(--text-main-color);
}

.page-blog-32win11-game-latest-promotions-analysis__section--conclusion .page-blog-32win11-game-latest-promotions-analysis__heading {
  color: var(--gold-color);
}

.page-blog-32win11-game-latest-promotions-analysis__section--conclusion .page-blog-32win11-game-latest-promotions-analysis__paragraph {
  color: var(--text-secondary-color);
}

.page-blog-32win11-game-latest-promotions-analysis__section--conclusion a {
  color: var(--glow-color); /* Links in conclusion */
  text-decoration: underline;
}

.page-blog-32win11-game-latest-promotions-analysis__section--conclusion a:hover {
  color: var(--gold-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-32win11-game-latest-promotions-analysis__hero-content {
    margin-top: -80px;
    padding: 15px;
  }
  .page-blog-32win11-game-latest-promotions-analysis__heading {
    font-size: 2rem;
  }
  .page-blog-32win11-game-latest-promotions-analysis__promo-card-grid {
    gap: 20px;
  }
  .page-blog-32win11-game-latest-promotions-analysis__promo-card-title {
    font-size: 1.3rem;
  }
  .page-blog-32win11-game-latest-promotions-analysis__list-item-title {
    font-size: 1.4rem;
  }
  .page-blog-32win11-game-latest-promotions-analysis__feature-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .page-blog-32win11-game-latest-promotions-analysis__hero-content {
    margin-top: -60px;
    padding: 10px;
  }
  .page-blog-32win11-game-latest-promotions-analysis__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-blog-32win11-game-latest-promotions-analysis__hero-description {
    font-size: 1rem;
  }
  .page-blog-32win11-game-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-32win11-game-latest-promotions-analysis__section {
    padding: 40px 0;
  }
  .page-blog-32win11-game-latest-promotions-analysis__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-32win11-game-latest-promotions-analysis__heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-32win11-game-latest-promotions-analysis__paragraph {
    font-size: 0.95rem;
  }
  .page-blog-32win11-game-latest-promotions-analysis__promo-card-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-blog-32win11-game-latest-promotions-analysis__promo-card-image,
  .page-blog-32win11-game-latest-promotions-analysis__list-item-image,
  .page-blog-32win11-game-latest-promotions-analysis__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-32win11-game-latest-promotions-analysis__list-item,
  .page-blog-32win11-game-latest-promotions-analysis__feature-item,
  .page-blog-32win11-game-latest-promotions-analysis__promo-card {
    padding: 20px;
  }

  .page-blog-32win11-game-latest-promotions-analysis__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-blog-32win11-game-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px;
  }
  
  /* Mobile button container responsiveness */
  .page-blog-32win11-game-latest-promotions-analysis__cta-buttons,
  .page-blog-32win11-game-latest-promotions-analysis__button-group,
  .page-blog-32win11-game-latest-promotions-analysis__btn-container,
  .page-blog-32win11-game-latest-promotions-analysis__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-32win11-game-latest-promotions-analysis__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Ensure video/image containers are responsive */
  .page-blog-32win11-game-latest-promotions-analysis__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  /* Specific padding for video section as per instruction, even if no video exists */
  .page-blog-32win11-game-latest-promotions-analysis__video-section {
    padding-top: 10px !important;
  }
}

/* Contrast Fixes - using specified custom colors */
.page-blog-32win11-game-latest-promotions-analysis__dark-bg {
  color: var(--text-main-color); /* text-main-color: #F2FFF6 */
  background: var(--deep-green-color); /* Deep Green: #0A4B2C */
}

.page-blog-32win11-game-latest-promotions-analysis__light-bg {
  color: #333333; /* Default dark text on light background */
  background: #ffffff; /* Default white background */
}

/* Overriding default light/dark for the conclusion section to use custom palette */
.page-blog-32win11-game-latest-promotions-analysis__section--conclusion {
  background-color: var(--card-bg-color); /* Card BG: #11271B */
  color: var(--text-main-color); /* Text Main: #F2FFF6 */
}

/* Ensure content area default contrast */
.page-blog-32win11-game-latest-promotions-analysis__section--intro,
.page-blog-32win11-game-latest-promotions-analysis__section--types,
.page-blog-32win11-game-latest-promotions-analysis__section--usage,
.page-blog-32win11-game-latest-promotions-analysis__faq-section {
    background-color: var(--page-bg-color); /* #08160F */
    color: var(--text-main-color); /* #F2FFF6 */
}

/* Ensure minimum image sizes in CSS */
.page-blog-32win11-game-latest-promotions-analysis__promo-card-image,
.page-blog-32win11-game-latest-promotions-analysis__list-item-image,
.page-blog-32win11-game-latest-promotions-analysis__feature-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure content img rules to prevent small sizes */
.page-blog-32win11-game-latest-promotions-analysis img {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no filter on images */
.page-blog-32win11-game-latest-promotions-analysis img {
  filter: none;
}