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

.page-blog-17king88-latest-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for the page */
  background-color: var(--page-background); /* Page background */
}

.page-blog-17king88-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-17king88-latest-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-17king88-latest-promotions__section-title {
  font-size: clamp(2em, 5vw, 2.8em);
  color: var(--page-gold-color);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-blog-17king88-latest-promotions__text-block {
  font-size: 1.1em;
  color: var(--page-text-secondary);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-blog-17king88-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  color: var(--page-text-main);
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-17king88-latest-promotions__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
}

.page-blog-17king88-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-17king88-latest-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text */
  border-radius: 10px;
}

.page-blog-17king88-latest-promotions__main-title {
  font-size: clamp(2.5em, 6vw, 3.8em);
  color: var(--page-gold-color);
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-17king88-latest-promotions__subtitle {
  font-size: clamp(1.1em, 2.5vw, 1.4em);
  color: var(--page-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.page-blog-17king88-latest-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-17king88-latest-promotions__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff; /* White text for primary button */
}

.page-blog-17king88-latest-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-17king88-latest-promotions__btn-secondary {
  background: var(--page-deep-green);
  color: var(--page-text-main);
  border: 1px solid var(--page-border-color);
}

.page-blog-17king88-latest-promotions__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--page-primary-color);
}

/* Grid Layouts */
.page-blog-17king88-latest-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Cards */
.page-blog-17king88-latest-promotions__card {
  background-color: var(--page-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.page-blog-17king88-latest-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-blog-17king88-latest-promotions__card-text {
  color: var(--page-text-secondary);
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotion Items */
.page-blog-17king88-latest-promotions__promotion-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: var(--page-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-blog-17king88-latest-promotions__promotion-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  min-width: 250px; /* Minimum width for image in desktop */
}

.page-blog-17king88-latest-promotions__promotion-content {
  width: 60%;
}

.page-blog-17king88-latest-promotions__promotion-title {
  font-size: 1.8em;
  color: var(--page-gold-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-blog-17king88-latest-promotions__promotion-description {
  color: var(--page-text-secondary);
  font-size: 1.1em;
  margin-bottom: 25px;
}

/* Steps List */
.page-blog-17king88-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.page-blog-17king88-latest-promotions__list-item {
  background-color: var(--page-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid var(--page-primary-color);
}

.page-blog-17king88-latest-promotions__list-title {
  font-size: 1.4em;
  color: var(--page-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-17king88-latest-promotions__list-item p {
  color: var(--page-text-secondary);
  font-size: 1em;
}

/* Checklist */
.page-blog-17king88-latest-promotions__checklist {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-17king88-latest-promotions__checklist-item {
  background-color: var(--page-card-bg);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--page-text-secondary);
  font-size: 1.1em;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--page-divider-color);
}

.page-blog-17king88-latest-promotions__checklist-item::before {
  content: '✔';
  color: var(--page-glow-color);
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
  flex-shrink: 0;
}

/* Advantages */
.page-blog-17king88-latest-promotions__advantage-card {
  background-color: var(--page-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.page-blog-17king88-latest-promotions__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog-17king88-latest-promotions__advantage-title {
  font-size: 1.4em;
  color: var(--page-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-17king88-latest-promotions__advantage-text {
  color: var(--page-text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
}

/* FAQ Section */
.page-blog-17king88-latest-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-17king88-latest-promotions__faq-item {
  background-color: var(--page-card-bg);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--page-border-color);
}

.page-blog-17king88-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: var(--page-text-main);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--page-deep-green);
  border-bottom: 1px solid var(--page-divider-color);
  user-select: none;
}

.page-blog-17king88-latest-promotions__faq-question:hover {
  background-color: var(--page-primary-color);
}

.page-blog-17king88-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-17king88-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-gold-color);
}

.page-blog-17king88-latest-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--page-text-secondary);
  background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter than card bg */
}

.page-blog-17king88-latest-promotions__faq-item[open] .page-blog-17king88-latest-promotions__faq-question {
  border-bottom: 1px solid var(--page-primary-color);
}

/* Hide default details marker */
.page-blog-17king88-latest-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-17king88-latest-promotions__faq-item summary {
  list-style: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-17king88-latest-promotions__hero-content {
    width: 90%;
  }
  .page-blog-17king88-latest-promotions__promotion-item {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-17king88-latest-promotions__promotion-image,
  .page-blog-17king88-latest-promotions__promotion-content {
    width: 100%;
  }
  .page-blog-17king88-latest-promotions__promotion-image {
    max-width: 600px;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 768px) {
  .page-blog-17king88-latest-promotions__section {
    padding: 40px 0;
  }
  .page-blog-17king88-latest-promotions__main-title {
    font-size: 2.2em;
  }
  .page-blog-17king88-latest-promotions__subtitle {
    font-size: 1em;
  }
  .page-blog-17king88-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-17king88-latest-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-17king88-latest-promotions__card {
    padding: 20px;
  }
  .page-blog-17king88-latest-promotions__card-image {
    height: 180px;
  }
  .page-blog-17king88-latest-promotions__promotion-item {
    padding: 20px;
  }
  .page-blog-17king88-latest-promotions__promotion-title {
    font-size: 1.5em;
  }
  .page-blog-17king88-latest-promotions__text-block {
    font-size: 0.95em;
  }
  .page-blog-17king88-latest-promotions__list-title {
    font-size: 1.2em;
  }
  .page-blog-17king88-latest-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-17king88-latest-promotions__faq-answer {
    padding: 15px 20px;
  }
  
  /* Mobile image responsiveness */
  .page-blog-17king88-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile container responsiveness */
  .page-blog-17king88-latest-promotions__section,
  .page-blog-17king88-latest-promotions__card,
  .page-blog-17king88-latest-promotions__container,
  .page-blog-17king88-latest-promotions__promotion-item,
  .page-blog-17king88-latest-promotions__faq-item,
  .page-blog-17king88-latest-promotions__advantage-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-blog-17king88-latest-promotions__cta-button,
  .page-blog-17king88-latest-promotions__btn-primary,
  .page-blog-17king88-latest-promotions__btn-secondary,
  .page-blog-17king88-latest-promotions a[class*="button"],
  .page-blog-17king88-latest-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-17king88-latest-promotions__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }

  .page-blog-17king88-latest-promotions__hero-content {
    position: static;
    transform: none;
    background: none; /* Remove dark overlay on mobile for better contrast */
    padding: 20px 0;
  }

  .page-blog-17king88-latest-promotions__hero-image {
    filter: brightness(0.5); /* Keep image dark for better text readability */
  }

  .page-blog-17king88-latest-promotions__main-title,
  .page-blog-17king88-latest-promotions__subtitle {
    text-shadow: none;
  }
}

/* Ensure content area images meet min size requirements */
.page-blog-17king88-latest-promotions__card-image,
.page-blog-17king88-latest-promotions__promotion-image,
.page-blog-17king88-latest-promotions__advantage-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure no filter for images */
.page-blog-17king88-latest-promotions img {
  filter: none; /* Reset any potential filter, except for hero image specifically */
}
.page-blog-17king88-latest-promotions__hero-image {
  filter: brightness(0.7); /* Reapply specific filter for hero image */
}
@media (max-width: 768px) {
  .page-blog-17king88-latest-promotions__hero-image {
    filter: brightness(0.5); /* Adjust hero image brightness for mobile */
  }
}