/* style/blog-vj99-promotions-guide.css */

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

.page-blog-vj99-promotions-guide {
  font-family: 'Arial', sans-serif;
  color: var(--vj99-text-main); /* Default text color for dark background */
  background-color: var(--vj99-background);
  line-height: 1.6;
}

.page-blog-vj99-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-vj99-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-blog-vj99-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  position: relative; /* Ensure image is not absolute and content can stack below */
  display: block;
  margin-bottom: 30px; /* Space between image and text content */
}

.page-blog-vj99-promotions-guide__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-vj99-promotions-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--vj99-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-vj99-promotions-guide__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--vj99-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-vj99-promotions-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-vj99-promotions-guide__btn-primary,
.page-blog-vj99-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-vj99-promotions-guide__btn-primary {
  background: var(--vj99-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-vj99-promotions-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-vj99-promotions-guide__btn-secondary {
  background: transparent;
  color: var(--vj99-secondary);
  border: 2px solid var(--vj99-secondary);
}

.page-blog-vj99-promotions-guide__btn-secondary:hover {
  background: rgba(34, 199, 104, 0.1);
  transform: translateY(-2px);
}

.page-blog-vj99-promotions-guide__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.page-blog-vj99-promotions-guide__btn-large {
    padding: 16px 35px;
    font-size: 1.2rem;
}

/* Section Titles */
.page-blog-vj99-promotions-guide__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--vj99-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-vj99-promotions-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--vj99-secondary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-vj99-promotions-guide__section-title--cta {
    color: var(--vj99-gold);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

/* Text Blocks */
.page-blog-vj99-promotions-guide__text-block {
  font-size: 1.1rem;
  color: var(--vj99-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-vj99-promotions-guide__text-block--cta {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.page-blog-vj99-promotions-guide__introduction-section {
  padding: 80px 0;
  background-color: var(--vj99-background); /* Ensure consistent dark background */
  color: var(--vj99-text-main);
}

/* Promotions Overview Section */
.page-blog-vj99-promotions-guide__promotions-overview-section {
  padding: 80px 0;
  background-color: var(--vj99-card-bg);
}

.page-blog-vj99-promotions-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-vj99-promotions-guide__card {
  background-color: var(--vj99-background);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--vj99-border);
  color: var(--vj99-text-main);
}

.page-blog-vj99-promotions-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-vj99-promotions-guide__card-title {
  font-size: 1.4rem;
  color: var(--vj99-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-vj99-promotions-guide__card-text {
  font-size: 1rem;
  color: var(--vj99-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Guide Section */
.page-blog-vj99-promotions-guide__guide-section {
  padding: 80px 0;
  background-color: var(--vj99-background);
  color: var(--vj99-text-main);
}

.page-blog-vj99-promotions-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-blog-vj99-promotions-guide__step-item {
  background-color: var(--vj99-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--vj99-border);
}

.page-blog-vj99-promotions-guide__step-title {
  font-size: 1.5rem;
  color: var(--vj99-secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-vj99-promotions-guide__step-text {
  font-size: 1rem;
  color: var(--vj99-text-secondary);
}

.page-blog-vj99-promotions-guide__step-text a {
    color: var(--vj99-gold);
    text-decoration: none;
}

.page-blog-vj99-promotions-guide__step-text a:hover {
    text-decoration: underline;
}

/* Benefits Section */
.page-blog-vj99-promotions-guide__benefits-section {
  padding: 80px 0;
  background-color: var(--vj99-card-bg);
  color: var(--vj99-text-main);
}

.page-blog-vj99-promotions-guide__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-vj99-promotions-guide__benefits-list li {
  background-color: var(--vj99-background);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: var(--vj99-text-secondary);
  border: 1px solid var(--vj99-divider);
}

.page-blog-vj99-promotions-guide__benefits-list li strong {
    color: var(--vj99-text-main);
    font-weight: 600;
}

.page-blog-vj99-promotions-guide__benefit-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

/* FAQ Section */
.page-blog-vj99-promotions-guide__faq-section {
  padding: 80px 0;
  background-color: var(--vj99-background);
  color: var(--vj99-text-main);
}

.page-blog-vj99-promotions-guide__faq-list {
  margin-top: 40px;
}

.page-blog-vj99-promotions-guide__faq-item {
  background-color: var(--vj99-card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--vj99-border);
  overflow: hidden;
}

.page-blog-vj99-promotions-guide__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--vj99-text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--vj99-deep-green);
  transition: background-color 0.3s ease;
}

.page-blog-vj99-promotions-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-vj99-promotions-guide__faq-item summary:hover {
  background-color: var(--vj99-primary);
}

.page-blog-vj99-promotions-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--vj99-secondary);
}

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

.page-blog-vj99-promotions-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: var(--vj99-text-secondary);
  line-height: 1.5;
  background-color: var(--vj99-card-bg);
}

.page-blog-vj99-promotions-guide__faq-answer p {
    margin-bottom: 0;
}

/* CTA Section */
.page-blog-vj99-promotions-guide__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--vj99-background);
}

.page-blog-vj99-promotions-guide__cta-buttons--bottom {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-vj99-promotions-guide__hero-image {
    max-height: 500px;
  }
  .page-blog-vj99-promotions-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-vj99-promotions-guide__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
  .page-blog-vj99-promotions-guide__card-image {
    height: 180px;
  }
  .page-blog-vj99-promotions-guide__benefits-list li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-vj99-promotions-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-vj99-promotions-guide__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, small top padding for content */
    padding-bottom: 40px;
  }
  .page-blog-vj99-promotions-guide__hero-image {
    max-height: 300px;
    margin-bottom: 20px;
  }
  .page-blog-vj99-promotions-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-vj99-promotions-guide__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-blog-vj99-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-vj99-promotions-guide__btn-primary,
  .page-blog-vj99-promotions-guide__btn-secondary {
    width: 100% !important;
    max-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-vj99-promotions-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-blog-vj99-promotions-guide__text-block {
    font-size: 1rem;
  }
  .page-blog-vj99-promotions-guide__grid,
  .page-blog-vj99-promotions-guide__step-by-step,
  .page-blog-vj99-promotions-guide__benefits-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-blog-vj99-promotions-guide__card-image {
    height: 150px;
  }
  .page-blog-vj99-promotions-guide__card-title {
    font-size: 1.2rem;
  }
  .page-blog-vj99-promotions-guide__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-blog-vj99-promotions-guide__faq-answer {
    padding: 10px 20px 15px;
  }
  /* All images in content area must be responsive */
  .page-blog-vj99-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-vj99-promotions-guide__section,
  .page-blog-vj99-promotions-guide__card,
  .page-blog-vj99-promotions-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-vj99-promotions-guide__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-vj99-promotions-guide__hero-image {
    max-height: 250px;
  }
  .page-blog-vj99-promotions-guide__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-blog-vj99-promotions-guide__btn-primary,
  .page-blog-vj99-promotions-guide__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .page-blog-vj99-promotions-guide__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-blog-vj99-promotions-guide__faq-item summary {
    font-size: 1rem;
  }
  .page-blog-vj99-promotions-guide__benefit-icon {
    width: 40px;
    height: 40px;
  }
  .page-blog-vj99-promotions-guide__benefits-list li {
    font-size: 0.9rem;
  }
}