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

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

.page-blog-tgv88-latest-promotions-analysis {
  color: var(--tgv88-text-main); /* Default text color for dark body background */
  background-color: var(--tgv88-background-color); /* Matches body background if set to this */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Ensure content area on light background has dark text */
.page-blog-tgv88-latest-promotions-analysis__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-tgv88-latest-promotions-analysis__dark-bg {
  background-color: var(--tgv88-background-color);
  color: var(--tgv88-text-main);
}

.page-blog-tgv88-latest-promotions-analysis__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-tgv88-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-tgv88-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-tgv88-latest-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-blog-tgv88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-tgv88-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(8, 22, 15, 0.7); /* Slightly transparent background for text readability */
  border-radius: 10px;
  margin-top: 80px; /* Push content down slightly from hero image */
  color: var(--tgv88-text-main);
}

.page-blog-tgv88-latest-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem); /* Responsive H1 font size */
  font-weight: 700;
  color: var(--tgv88-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-tgv88-latest-promotions-analysis__subtitle {
  font-size: 1.2rem;
  color: var(--tgv88-text-secondary);
  margin-bottom: 30px;
}

.page-blog-tgv88-latest-promotions-analysis__section-title {
  font-size: 2.5rem;
  color: var(--tgv88-gold-color);
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-tgv88-latest-promotions-analysis__paragraph {
  font-size: 1.1rem;
  color: var(--tgv88-text-main);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-blog-tgv88-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-blog-tgv88-latest-promotions-analysis__btn-primary {
  background: var(--tgv88-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-tgv88-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--tgv88-glow-color);
}

.page-blog-tgv88-latest-promotions-analysis__btn-secondary {
  background: #ffffff;
  color: var(--tgv88-primary-color);
  border: 2px solid var(--tgv88-primary-color);
}

.page-blog-tgv88-latest-promotions-analysis__btn-secondary:hover {
  background: var(--tgv88-primary-color);
  color: #ffffff;
  box-shadow: 0 0 10px var(--tgv88-primary-color);
}

.page-blog-tgv88-latest-promotions-analysis__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
}

.page-blog-tgv88-latest-promotions-analysis__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-tgv88-latest-promotions-analysis__card--dark {
  background-color: var(--tgv88-card-bg);
  color: var(--tgv88-text-main);
  border: 1px solid var(--tgv88-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-tgv88-latest-promotions-analysis__card-title {
  font-size: 1.6rem;
  color: var(--tgv88-primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-tgv88-latest-promotions-analysis__card--dark .page-blog-tgv88-latest-promotions-analysis__card-title {
  color: var(--tgv88-gold-color);
}

.page-blog-tgv88-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-tgv88-latest-promotions-analysis__card-text {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-tgv88-latest-promotions-analysis__card--dark .page-blog-tgv88-latest-promotions-analysis__card-text {
  color: var(--tgv88-text-secondary);
}

.page-blog-tgv88-latest-promotions-analysis__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  text-align: left;
}

.page-blog-tgv88-latest-promotions-analysis__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-blog-tgv88-latest-promotions-analysis__image-block-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-blog-tgv88-latest-promotions-analysis__text-block {
  flex: 1;
  max-width: 50%;
}

.page-blog-tgv88-latest-promotions-analysis__text-block-title {
  font-size: 2rem;
  color: var(--tgv88-primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-tgv88-latest-promotions-analysis__dark-bg .page-blog-tgv88-latest-promotions-analysis__text-block-title {
  color: var(--tgv88-gold-color);
}

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

.page-blog-tgv88-latest-promotions-analysis__list-item {
  font-size: 1.05rem;
  color: var(--tgv88-text-main);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.page-blog-tgv88-latest-promotions-analysis__light-bg .page-blog-tgv88-latest-promotions-analysis__list-item {
  color: #333333;
}

.page-blog-tgv88-latest-promotions-analysis__list-item::before {
  content: '✓';
  color: var(--tgv88-primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-blog-tgv88-latest-promotions-analysis__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background-color: var(--tgv88-background-color);
  color: var(--tgv88-text-main);
}

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

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

.page-blog-tgv88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--tgv88-gold-color);
  background-color: var(--tgv88-deep-green);
  border-bottom: 1px solid var(--tgv88-divider-color);
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.page-blog-tgv88-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-tgv88-latest-promotions-analysis__faq-item[open] .page-blog-tgv88-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-tgv88-latest-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--tgv88-text-secondary);
  background-color: var(--tgv88-card-bg);
}

.page-blog-tgv88-latest-promotions-analysis__conclusion {
  padding: 80px 20px;
  background-color: var(--tgv88-deep-green);
  color: var(--tgv88-text-main);
}

.page-blog-tgv88-latest-promotions-analysis__conclusion .page-blog-tgv88-latest-promotions-analysis__paragraph {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-tgv88-latest-promotions-analysis__hero-content {
    padding: 30px;
  }

  .page-blog-tgv88-latest-promotions-analysis__grid-container {
    gap: 20px;
  }

  .page-blog-tgv88-latest-promotions-analysis__image-text-block {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-tgv88-latest-promotions-analysis__image-block-image,
  .page-blog-tgv88-latest-promotions-analysis__text-block {
    max-width: 100%;
  }

  .page-blog-tgv88-latest-promotions-analysis__image-text-block--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-blog-tgv88-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-tgv88-latest-promotions-analysis__section {
    padding: 40px 15px;
  }

  .page-blog-tgv88-latest-promotions-analysis__hero-section {
    min-height: 400px;
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-tgv88-latest-promotions-analysis__hero-content {
    padding: 20px;
    margin-top: 40px;
  }

  .page-blog-tgv88-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-tgv88-latest-promotions-analysis__subtitle {
    font-size: 1rem;
  }

  .page-blog-tgv88-latest-promotions-analysis__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-blog-tgv88-latest-promotions-analysis__paragraph {
    font-size: 1rem;
    text-align: left;
  }

  .page-blog-tgv88-latest-promotions-analysis__cta-button,
  .page-blog-tgv88-latest-promotions-analysis__btn-primary,
  .page-blog-tgv88-latest-promotions-analysis__btn-secondary,
  .page-blog-tgv88-latest-promotions-analysis a[class*="button"],
  .page-blog-tgv88-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-tgv88-latest-promotions-analysis__cta-buttons,
  .page-blog-tgv88-latest-promotions-analysis__button-group,
  .page-blog-tgv88-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;
  }

  .page-blog-tgv88-latest-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-blog-tgv88-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-tgv88-latest-promotions-analysis__section,
  .page-blog-tgv88-latest-promotions-analysis__card,
  .page-blog-tgv88-latest-promotions-analysis__container,
  .page-blog-tgv88-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-tgv88-latest-promotions-analysis__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-tgv88-latest-promotions-analysis__card {
    padding: 20px;
  }

  .page-blog-tgv88-latest-promotions-analysis__text-block-title {
    font-size: 1.5rem;
  }

  .page-blog-tgv88-latest-promotions-analysis__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-blog-tgv88-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
  }
}