:root {
  --tk88-green-main: #11A84E;
  --tk88-green-secondary: #22C768;
  --tk88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --tk88-card-bg: #11271B;
  --tk88-bg-dark: #08160F;
  --tk88-text-main: #F2FFF6;
  --tk88-text-secondary: #A7D9B8;
  --tk88-border: #2E7A4E;
  --tk88-glow: #57E38D;
  --tk88-gold: #F2C14E;
  --tk88-divider: #1E3A2A;
  --tk88-deep-green: #0A4B2C;
}

.page-promotions-daily-cashback {
  background-color: var(--tk88-bg-dark);
  color: var(--tk88-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px;
}

.page-promotions-daily-cashback__hero-section {
  position: relative;
  width: 100%;
  padding: 10px 0 60px 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--tk88-deep-green);
}

.page-promotions-daily-cashback__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.page-promotions-daily-cashback__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-daily-cashback__hero-content {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}

.page-promotions-daily-cashback__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: var(--tk88-gold);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-promotions-daily-cashback__intro-description {
  font-size: 1.1em;
  color: var(--tk88-text-secondary);
  margin-bottom: 30px;
}

.page-promotions-daily-cashback__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions-daily-cashback__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-daily-cashback__btn-primary {
  background: var(--tk88-button-gradient);
  color: var(--tk88-text-main);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-daily-cashback__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-daily-cashback__btn-secondary {
  background-color: transparent;
  color: var(--tk88-text-main);
  border: 2px solid var(--tk88-border);
}

.page-promotions-daily-cashback__btn-secondary:hover {
  background-color: var(--tk88-border);
  color: var(--tk88-text-main);
}

.page-promotions-daily-cashback__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-daily-cashback__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: var(--tk88-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-promotions-daily-cashback__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-promotions-daily-cashback__content-wrapper--center {
  align-items: center;
}

.page-promotions-daily-cashback__content-wrapper--single {
  display: block;
}

.page-promotions-daily-cashback__card {
  background-color: var(--tk88-card-bg);
  border: 1px solid var(--tk88-border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  flex: 1 1 calc(33% - 20px);
  min-width: 300px;
  color: var(--tk88-text-main);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-cashback__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback__card--full-width {
  flex: 1 1 100%;
  max-width: 100%;
}

.page-promotions-daily-cashback__card-title {
  font-size: 1.5em;
  color: var(--tk88-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-daily-cashback__card-text {
  font-size: 1em;
  color: var(--tk88-text-secondary);
  margin-bottom: 15px;
}

.page-promotions-daily-cashback__image-container {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-daily-cashback__image-container-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promotions-daily-cashback__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-daily-cashback__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--tk88-text-secondary);
}

.page-promotions-daily-cashback__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--tk88-green-main);
  font-weight: bold;
}

.page-promotions-daily-cashback__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-daily-cashback__faq-item {
  background-color: var(--tk88-card-bg);
  border: 1px solid var(--tk88-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--tk88-text-main);
}

.page-promotions-daily-cashback__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--tk88-text-main);
  cursor: pointer;
  background-color: var(--tk88-deep-green);
  border-bottom: 1px solid var(--tk88-border);
  transition: background-color 0.3s ease;
}

.page-promotions-daily-cashback__faq-question:hover {
  background-color: var(--tk88-deep-green);
}

.page-promotions-daily-cashback__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-cashback__faq-question::marker {
  display: none;
}

.page-promotions-daily-cashback__faq-toggle {
  font-size: 1.5em;
  color: var(--tk88-gold);
  margin-left: 15px;
}

.page-promotions-daily-cashback__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--tk88-text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-daily-cashback__faq-item[open] .page-promotions-daily-cashback__faq-answer {
  max-height: 500px;
  padding: 20px 25px;
}

.page-promotions-daily-cashback__faq-item details summary {
  list-style: none;
}

.page-promotions-daily-cashback__dark-section {
  background-color: var(--tk88-green-main);
  color: var(--tk88-text-main);
}

.page-promotions-daily-cashback__cta-buttons--bottom {
  margin-top: 60px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions-daily-cashback {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-daily-cashback__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-promotions-daily-cashback__main-title {
    font-size: 2em;
  }

  .page-promotions-daily-cashback__intro-description {
    font-size: 1em;
  }

  .page-promotions-daily-cashback__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions-daily-cashback__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-promotions-daily-cashback__section {
    padding: 40px 15px;
  }

  .page-promotions-daily-cashback__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-promotions-daily-cashback__card {
    flex: 1 1 100%;
    min-width: unset;
    padding: 25px;
  }

  .page-promotions-daily-cashback__image-container {
    height: 200px;
  }

  .page-promotions-daily-cashback img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-cashback video,
  .page-promotions-daily-cashback__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-daily-cashback__video-section,
  .page-promotions-daily-cashback__video-container,
  .page-promotions-daily-cashback__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-daily-cashback__section,
  .page-promotions-daily-cashback__card,
  .page-promotions-daily-cashback__container,
  .page-promotions-daily-cashback__content-wrapper,
  .page-promotions-daily-cashback__cta-buttons,
  .page-promotions-daily-cashback__button-group,
  .page-promotions-daily-cashback__btn-container,
  .page-promotions-daily-cashback__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-daily-cashback__faq-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-promotions-daily-cashback__content-wrapper--single {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}