.page-blog-k188-code-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--bg-color, #08160F); /* Default background color */
}

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

.page-blog-k188-code-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
  background-color: var(--deep-green, #0A4B2C);
}

.page-blog-k188-code-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 500px;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-k188-code-latest-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 100%;
  z-index: 10;
  color: var(--text-main, #F2FFF6);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeIn 1s forwards 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -40%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.page-blog-k188-code-latest-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--gold, #F2C14E);
  max-width: 100%;
}

.page-blog-k188-code-latest-promotions__description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 800px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-k188-code-latest-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-k188-code-latest-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-k188-code-latest-promotions__introduction-section,
.page-blog-k188-code-latest-promotions__promotions-grid,
.page-blog-k188-code-latest-promotions__how-to-claim,
.page-blog-k188-code-latest-promotions__game-types,
.page-blog-k188-code-latest-promotions__why-choose,
.page-blog-k188-code-latest-promotions__faq-section,
.page-blog-k188-code-latest-promotions__cta-final {
  padding: 60px 0;
}

.page-blog-k188-code-latest-promotions__dark-bg {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__light-bg {
  background-color: #08160F;
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold, #F2C14E);
}

.page-blog-k188-code-latest-promotions__description-small {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-secondary, #A7D9B8);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-k188-code-latest-promotions__text-content {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-k188-code-latest-promotions__card-grid,
.page-blog-k188-code-latest-promotions__steps-grid,
.page-blog-k188-code-latest-promotions__game-grid,
.page-blog-k188-code-latest-promotions__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-k188-code-latest-promotions__promotion-card,
.page-blog-k188-code-latest-promotions__step-card,
.page-blog-k188-code-latest-promotions__game-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__promotion-card:hover,
.page-blog-k188-code-latest-promotions__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-k188-code-latest-promotions__card-image,
.page-blog-k188-code-latest-promotions__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-k188-code-latest-promotions__card-content,
.page-blog-k188-code-latest-promotions__game-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-k188-code-latest-promotions__card-title,
.page-blog-k188-code-latest-promotions__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold, #F2C14E);
}

.page-blog-k188-code-latest-promotions__card-text,
.page-blog-k188-code-latest-promotions__game-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
  flex-grow: 1;
}

.page-blog-k188-code-latest-promotions__card-button,
.page-blog-k188-code-latest-promotions__game-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-k188-code-latest-promotions__card-button:hover,
.page-blog-k188-code-latest-promotions__game-link:hover {
  background-color: var(--main-color, #11A84E);
}

.page-blog-k188-code-latest-promotions__view-all-promos,
.page-blog-k188-code-latest-promotions__view-all-faq {
  text-align: center;
  margin-top: 50px;
}

.page-blog-k188-code-latest-promotions__step-card {
  text-align: center;
  padding: 30px;
  background-color: var(--deep-green, #0A4B2C);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
}

.page-blog-k188-code-latest-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__step-text {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-blog-k188-code-latest-promotions__step-link {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--main-color, #11A84E);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-k188-code-latest-promotions__step-link:hover {
  background-color: var(--aux-color, #22C768);
}

.page-blog-k188-code-latest-promotions__feature-item {
  background-color: var(--deep-green, #0A4B2C);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold, #F2C14E);
}

.page-blog-k188-code-latest-promotions__feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
}

.page-blog-k188-code-latest-promotions__feature-link {
  color: var(--aux-color, #22C768);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-k188-code-latest-promotions__feature-link:hover {
  color: var(--glow, #57E38D);
}

.page-blog-k188-code-latest-promotions__faq-list {
  margin-top: 30px;
}

.page-blog-k188-code-latest-promotions__faq-item {
  background-color: var(--card-bg, #11271B);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-k188-code-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-k188-code-latest-promotions__faq-question:hover {
  background-color: var(--main-color, #11A84E);
}

.page-blog-k188-code-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-k188-code-latest-promotions__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-blog-k188-code-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  border-top: 1px solid var(--divider, #1E3A2A);
}

.page-blog-k188-code-latest-promotions__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-k188-code-latest-promotions__faq-answer a {
  color: var(--aux-color, #22C768);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-k188-code-latest-promotions__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-k188-code-latest-promotions__hero-content {
    padding: 15px;
  }
  .page-blog-k188-code-latest-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-k188-code-latest-promotions__description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  .page-blog-k188-code-latest-promotions__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
  .page-blog-k188-code-latest-promotions__card-grid,
  .page-blog-k188-code-latest-promotions__steps-grid,
  .page-blog-k188-code-latest-promotions__game-grid,
  .page-blog-k188-code-latest-promotions__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  .page-blog-k188-code-latest-promotions__promotion-card,
  .page-blog-k188-code-latest-promotions__game-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-k188-code-latest-promotions__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-k188-code-latest-promotions__hero-image {
    max-height: 400px;
  }
  .page-blog-k188-code-latest-promotions__hero-content {
    top: 55%;
  }
  .page-blog-k188-code-latest-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-blog-k188-code-latest-promotions__description {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }
  .page-blog-k188-code-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-k188-code-latest-promotions__introduction-section,
  .page-blog-k188-code-latest-promotions__promotions-grid,
  .page-blog-k188-code-latest-promotions__how-to-claim,
  .page-blog-k188-code-latest-promotions__game-types,
  .page-blog-k188-code-latest-promotions__why-choose,
  .page-blog-k188-code-latest-promotions__faq-section,
  .page-blog-k188-code-latest-promotions__cta-final {
    padding: 40px 0;
  }

  .page-blog-k188-code-latest-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-k188-code-latest-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-k188-code-latest-promotions__description-small {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-blog-k188-code-latest-promotions__card-grid,
  .page-blog-k188-code-latest-promotions__steps-grid,
  .page-blog-k188-code-latest-promotions__game-grid,
  .page-blog-k188-code-latest-promotions__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-k188-code-latest-promotions__card-image,
  .page-blog-k188-code-latest-promotions__game-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-k188-code-latest-promotions__promotion-card,
  .page-blog-k188-code-latest-promotions__step-card,
  .page-blog-k188-code-latest-promotions__game-card,
  .page-blog-k188-code-latest-promotions__feature-item {
    padding: 20px;
  }

  .page-blog-k188-code-latest-promotions__card-title,
  .page-blog-k188-code-latest-promotions__game-title {
    font-size: 1.2rem;
  }

  .page-blog-k188-code-latest-promotions__card-text,
  .page-blog-k188-code-latest-promotions__game-text,
  .page-blog-k188-code-latest-promotions__text-content,
  .page-blog-k188-code-latest-promotions__feature-text {
    font-size: 0.85rem;
  }

  .page-blog-k188-code-latest-promotions__card-button,
  .page-blog-k188-code-latest-promotions__game-link,
  .page-blog-k188-code-latest-promotions__step-link {
    padding: 8px 15px;
    font-size: 0.85rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-k188-code-latest-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-k188-code-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.85rem;
  }
  .page-blog-k188-code-latest-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-k188-code-latest-promotions__card,
  .page-blog-k188-code-latest-promotions__section,
  .page-blog-k188-code-latest-promotions__box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-k188-code-latest-promotions__hero-image {
    filter: brightness(0.5) !important; /* Make hero image darker on mobile for text contrast */
  }
}

/* Colors based on provided scheme */
.page-blog-k188-code-latest-promotions__cta-button {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-k188-code-latest-promotions__dark-bg {
  background-color: var(--card-bg, #11271B);
}

.page-blog-k188-code-latest-promotions__light-bg {
  background-color: var(--background, #08160F);
}

.page-blog-k188-code-latest-promotions__text-content,
.page-blog-k188-code-latest-promotions__description-small,
.page-blog-k188-code-latest-promotions__card-text,
.page-blog-k188-code-latest-promotions__game-text,
.page-blog-k188-code-latest-promotions__step-text,
.page-blog-k188-code-latest-promotions__feature-text,
.page-blog-k188-code-latest-promotions__faq-answer {
  color: var(--text-secondary, #A7D9B8);
}

.page-blog-k188-code-latest-promotions__main-title,
.page-blog-k188-code-latest-promotions__section-title,
.page-blog-k188-code-latest-promotions__card-title,
.page-blog-k188-code-latest-promotions__game-title,
.page-blog-k188-code-latest-promotions__step-number,
.page-blog-k188-code-latest-promotions__faq-toggle {
  color: var(--gold, #F2C14E);
}

.page-blog-k188-code-latest-promotions__feature-link,
.page-blog-k188-code-latest-promotions__faq-answer a {
  color: var(--aux-color, #22C768);
}

.page-blog-k188-code-latest-promotions__faq-question:hover {
  background-color: var(--main-color, #11A84E);
}

.page-blog-k188-code-latest-promotions__card-button,
.page-blog-k188-code-latest-promotions__game-link {
  background: var(--deep-green, #0A4B2C);
}
.page-blog-k188-code-latest-promotions__step-link {
  background-color: var(--main-color, #11A84E);
}

.page-blog-k188-code-latest-promotions__step-link:hover {
  background-color: var(--aux-color, #22C768);
}

.page-blog-k188-code-latest-promotions__feature-item {
  background-color: var(--deep-green, #0A4B2C);
}

.page-blog-k188-code-latest-promotions__faq-item {
  background-color: var(--card-bg, #11271B);
}

.page-blog-k188-code-latest-promotions__faq-question {
  background-color: var(--deep-green, #0A4B2C);
}

.page-blog-k188-code-latest-promotions__faq-answer {
  border-top: 1px solid var(--divider, #1E3A2A);
}

.page-blog-k188-code-latest-promotions__cta-final .page-blog-k188-code-latest-promotions__section-title {
  color: var(--text-main, #F2FFF6);
}

.page-blog-k188-code-latest-promotions__hero-content {
  background: rgba(17, 40, 27, 0.6); /* Semi-transparent background for text */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}