/* style/blog-bk8-latest-promotions-analysis.css */

/* Base Styles & Typography */
.page-blog-bk8-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-blog-bk8-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-bk8-latest-promotions-analysis__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-bk8-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-bk8-latest-promotions-analysis a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-bk8-latest-promotions-analysis a:hover {
  color: #F2C14E; /* Gold */
}

/* Buttons */
.page-blog-bk8-latest-promotions-analysis__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.page-blog-bk8-latest-promotions-analysis__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-bk8-latest-promotions-analysis__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-blog-bk8-latest-promotions-analysis__btn--secondary {
  background: #11271B; /* Card BG */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-bk8-latest-promotions-analysis__btn--secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

/* Hero Section */
.page-blog-bk8-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background-color: #08160F;
}

.page-blog-bk8-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-bk8-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-bk8-latest-promotions-analysis__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-blog-bk8-latest-promotions-analysis__hero-description {
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* Intro Section */
.page-blog-bk8-latest-promotions-analysis__intro-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

/* Registration Guide */
.page-blog-bk8-latest-promotions-analysis__registration-guide {
  padding: 80px 0;
  background-color: #08160F;
}

.page-blog-bk8-latest-promotions-analysis__image-wrapper {
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-bk8-latest-promotions-analysis__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-blog-bk8-latest-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-bk8-latest-promotions-analysis__list-item {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F;
  font-size: 1.05em;
}

.page-blog-bk8-latest-promotions-analysis__list-item strong {
  color: #F2C14E; /* Gold */
}

/* Promotions Overview */
.page-blog-bk8-latest-promotions-analysis__promotions-overview {
  padding: 80px 0;
  background-color: #0A4B2C;
  border-bottom: 1px solid #1E3A2A;
}

/* Key Promotions */
.page-blog-bk8-latest-promotions-analysis__key-promotions {
  padding: 80px 0;
  background-color: #08160F;
}

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

.page-blog-bk8-latest-promotions-analysis__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-bk8-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-blog-bk8-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-bk8-latest-promotions-analysis__card-text {
  color: #A7D9B8;
  font-size: 1em;
  padding: 0 15px;
  flex-grow: 1;
}

.page-blog-bk8-latest-promotions-analysis__card-link {
  display: inline-block;
  margin-top: 15px;
  color: #2AD16F; /* Button green */
  text-decoration: underline;
  font-weight: 600;
}

.page-blog-bk8-latest-promotions-analysis__card-link:hover {
  color: #F2C14E;
}

/* Terms and Conditions */
.page-blog-bk8-latest-promotions-analysis__terms-conditions {
  padding: 80px 0;
  background-color: #0A4B2C;
  border-bottom: 1px solid #1E3A2A;
}

/* Tips Section */
.page-blog-bk8-latest-promotions-analysis__tips-section {
  padding: 80px 0;
  background-color: #08160F;
}

/* Why Choose BK8 */
.page-blog-bk8-latest-promotions-analysis__why-choose {
  padding: 80px 0;
  background-color: #0A4B2C;
  border-bottom: 1px solid #1E3A2A;
}

/* FAQ Section */
.page-blog-bk8-latest-promotions-analysis__faq-section {
  padding: 80px 0;
  background-color: #08160F;
}

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

.page-blog-bk8-latest-promotions-analysis__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-bk8-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-bk8-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-bk8-latest-promotions-analysis__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-blog-bk8-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #2AD16F; /* Button green */
  margin-left: 15px;
}

.page-blog-bk8-latest-promotions-analysis__faq-item[open] .page-blog-bk8-latest-promotions-analysis__faq-toggle {
  color: #F2C14E; /* Gold */
}

.page-blog-bk8-latest-promotions-analysis__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.7;
}

/* CTA Section */
.page-blog-bk8-latest-promotions-analysis__cta-section {
  padding: 80px 0;
  background-color: #0A4B2C;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-bk8-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
  .page-blog-bk8-latest-promotions-analysis__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-bk8-latest-promotions-analysis__hero-description {
    font-size: 1.1em;
  }
  .page-blog-bk8-latest-promotions-analysis__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-bk8-latest-promotions-analysis__container {
    padding: 0 15px;
  }
  .page-blog-bk8-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-bk8-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-bk8-latest-promotions-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-bk8-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-bk8-latest-promotions-analysis__image-wrapper {
    margin-bottom: 20px;
  }
  
  /* Image responsive */
  .page-blog-bk8-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Video responsive (if any) */
  .page-blog-bk8-latest-promotions-analysis video,
  .page-blog-bk8-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-bk8-latest-promotions-analysis__video-section,
  .page-blog-bk8-latest-promotions-analysis__video-container,
  .page-blog-bk8-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Button responsive */
  .page-blog-bk8-latest-promotions-analysis__btn,
  .page-blog-bk8-latest-promotions-analysis__btn--primary,
  .page-blog-bk8-latest-promotions-analysis__btn--secondary,
  .page-blog-bk8-latest-promotions-analysis a[class*="button"],
  .page-blog-bk8-latest-promotions-analysis a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-bk8-latest-promotions-analysis__cta-buttons,
  .page-blog-bk8-latest-promotions-analysis__button-group,
  .page-blog-bk8-latest-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .page-blog-bk8-latest-promotions-analysis__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-bk8-latest-promotions-analysis__promo-card {
    margin-bottom: 20px;
  }
  .page-blog-bk8-latest-promotions-analysis__card-image {
    height: 180px;
  }
  .page-blog-bk8-latest-promotions-analysis__list-item {
    padding: 12px 15px;
  }
  .page-blog-bk8-latest-promotions-analysis__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-blog-bk8-latest-promotions-analysis__faq-answer {
    padding: 0 15px 15px;
  }
}