.page-blog-tc88-promotions-unlocked {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-blog-tc88-promotions-unlocked__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-blog-tc88-promotions-unlocked__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Adjust as needed for visual balance */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-tc88-promotions-unlocked__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-tc88-promotions-unlocked__hero-content {
  position: relative; /* Ensure content is above any potential background elements */
  z-index: 2; /* Ensure text is above image */
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap with image slightly for design */
  background: rgba(17, 40, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.page-blog-tc88-promotions-unlocked__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-tc88-promotions-unlocked__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-tc88-promotions-unlocked__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-tc88-promotions-unlocked__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-tc88-promotions-unlocked__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  color: #F2C14E; /* Gold */
}

.page-blog-tc88-promotions-unlocked__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-tc88-promotions-unlocked__list,
.page-blog-tc88-promotions-unlocked__numbered-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-blog-tc88-promotions-unlocked__list-item,
.page-blog-tc88-promotions-unlocked__numbered-list .page-blog-tc88-promotions-unlocked__list-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-tc88-promotions-unlocked__numbered-list .page-blog-tc88-promotions-unlocked__list-item {
  counter-increment: list-counter;
}

.page-blog-tc88-promotions-unlocked__numbered-list .page-blog-tc88-promotions-unlocked__list-item::before {
  content: counter(list-counter) ". ";
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-right: 10px;
  font-size: 1.2em;
}

.page-blog-tc88-promotions-unlocked__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-blog-tc88-promotions-unlocked__promo-card,
.page-blog-tc88-promotions-unlocked__benefit-card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #F2FFF6; /* Text Main */
}

.page-blog-tc88-promotions-unlocked__promo-card:hover,
.page-blog-tc88-promotions-unlocked__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-tc88-promotions-unlocked__card-image,
.page-blog-tc88-promotions-unlocked__benefit-icon {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-blog-tc88-promotions-unlocked__card-title,
.page-blog-tc88-promotions-unlocked__benefit-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-blog-tc88-promotions-unlocked__card-description,
.page-blog-tc88-promotions-unlocked__benefit-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-tc88-promotions-unlocked__cta-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-blog-tc88-promotions-unlocked__btn-primary,
.page-blog-tc88-promotions-unlocked__btn-secondary,
.page-blog-tc88-promotions-unlocked__cta-button,
.page-blog-tc88-promotions-unlocked__card-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-tc88-promotions-unlocked__btn-primary,
.page-blog-tc88-promotions-unlocked__cta-button {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-tc88-promotions-unlocked__btn-primary:hover,
.page-blog-tc88-promotions-unlocked__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-tc88-promotions-unlocked__btn-secondary,
.page-blog-tc88-promotions-unlocked__card-button {
  background: #11271B; /* Card BG */
  color: #F2C14E; /* Gold */
  border: 2px solid #2AD16F; /* Button primary light green */
}

.page-blog-tc88-promotions-unlocked__btn-secondary:hover,
.page-blog-tc88-promotions-unlocked__card-button:hover {
  background: #2AD16F; /* Button primary light green */
  color: #11271B; /* Card BG */
  border-color: #F2C14E; /* Gold */
}

.page-blog-tc88-promotions-unlocked__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-tc88-promotions-unlocked__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-blog-tc88-promotions-unlocked__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-blog-tc88-promotions-unlocked__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-blog-tc88-promotions-unlocked__video-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-blog-tc88-promotions-unlocked__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  width: 100%; /* Ensure width is 100% on desktop */
  max-width: 900px;
}

.page-blog-tc88-promotions-unlocked__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-blog-tc88-promotions-unlocked__video-caption {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 15px;
}

.page-blog-tc88-promotions-unlocked__faq-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-tc88-promotions-unlocked__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-blog-tc88-promotions-unlocked__faq-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-tc88-promotions-unlocked__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  user-select: none;
  background: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

.page-blog-tc88-promotions-unlocked__faq-question:hover {
  background-color: #2E7A4E; /* Border */
}

.page-blog-tc88-promotions-unlocked__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-tc88-promotions-unlocked__faq-answer {
  padding: 0 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-blog-tc88-promotions-unlocked__faq-item[open] .page-blog-tc88-promotions-unlocked__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

.page-blog-tc88-promotions-unlocked__faq-item[open] .page-blog-tc88-promotions-unlocked__faq-question {
  background-color: #2E7A4E; /* Border */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-tc88-promotions-unlocked__hero-content {
    margin-top: -50px;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-tc88-promotions-unlocked__hero-content {
    margin-top: 0;
    padding: 25px 15px;
    box-shadow: none;
    border-radius: 0;
    background: rgba(17, 40, 27, 0.9); /* Card BG with more transparency */
  }

  .page-blog-tc88-promotions-unlocked__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-tc88-promotions-unlocked__main-title {
    font-size: 1.8em;
  }

  .page-blog-tc88-promotions-unlocked__intro-text {
    font-size: 1em;
  }

  .page-blog-tc88-promotions-unlocked__section {
    padding: 40px 15px;
  }

  .page-blog-tc88-promotions-unlocked__content-area {
    padding: 40px 15px;
  }

  .page-blog-tc88-promotions-unlocked__section-title {
    font-size: 1.8em;
  }

  .page-blog-tc88-promotions-unlocked__grid-container,
  .page-blog-tc88-promotions-unlocked__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-tc88-promotions-unlocked__promo-card,
  .page-blog-tc88-promotions-unlocked__benefit-card {
    padding: 20px;
  }

  .page-blog-tc88-promotions-unlocked__card-image,
  .page-blog-tc88-promotions-unlocked__benefit-icon {
    height: 180px;
  }

  .page-blog-tc88-promotions-unlocked__card-title,
  .page-blog-tc88-promotions-unlocked__benefit-title {
    font-size: 1.2em;
  }

  .page-blog-tc88-promotions-unlocked__btn-primary,
  .page-blog-tc88-promotions-unlocked__btn-secondary,
  .page-blog-tc88-promotions-unlocked__cta-button,
  .page-blog-tc88-promotions-unlocked__card-button {
    padding: 12px 20px;
    font-size: 0.9em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-tc88-promotions-unlocked__cta-buttons,
  .page-blog-tc88-promotions-unlocked__button-group,
  .page-blog-tc88-promotions-unlocked__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;
  }
  
  .page-blog-tc88-promotions-unlocked__video-wrapper {
    padding-bottom: 56.25% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-tc88-promotions-unlocked__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-tc88-promotions-unlocked__video-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-tc88-promotions-unlocked img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-tc88-promotions-unlocked__section,
  .page-blog-tc88-promotions-unlocked__card,
  .page-blog-tc88-promotions-unlocked__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-tc88-promotions-unlocked__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-tc88-promotions-unlocked__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  .page-blog-tc88-promotions-unlocked__list-item,
  .page-blog-tc88-promotions-unlocked__numbered-list .page-blog-tc88-promotions-unlocked__list-item {
    padding: 12px 15px;
    font-size: 0.9em;
  }
}

/* Color Contrast Fixes if needed - based on body background color */
/* Assuming shared.css sets --background-color to a dark tone like #08160F */
.page-blog-tc88-promotions-unlocked__dark-bg {
  color: #F2FFF6; /* Text Main */
}
.page-blog-tc88-promotions-unlocked__light-bg {
  color: #F2FFF6; /* Text Main */
}

/* Ensure content area images dont go below 200px */
.page-blog-tc88-promotions-unlocked__promo-card .page-blog-tc88-promotions-unlocked__card-image,
.page-blog-tc88-promotions-unlocked__benefit-card .page-blog-tc88-promotions-unlocked__benefit-icon {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-blog-tc88-promotions-unlocked__promo-card .page-blog-tc88-promotions-unlocked__card-image,
  .page-blog-tc88-promotions-unlocked__benefit-card .page-blog-tc88-promotions-unlocked__benefit-icon {
    min-width: 200px !important;
    min-height: 200px !important;
  }
}