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

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

.page-blog-qq98-promotions-guide {
  font-family: 'Arial', sans-serif;
  background-color: var(--qq98-background); /* Dark background */
  color: var(--qq98-text-main); /* Light text for dark background */
  line-height: 1.6;
  overflow-x: hidden;
}

.page-blog-qq98-promotions-guide a {
  color: var(--qq98-secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-qq98-promotions-guide a:hover {
  color: var(--qq98-glow);
}

.page-blog-qq98-promotions-guide__highlight-text {
  color: var(--qq98-gold);
  font-weight: bold;
}

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

/* Hero Section */
.page-blog-qq98-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  background-color: var(--qq98-deep-green);
  overflow: hidden;
}

.page-blog-qq98-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

.page-blog-qq98-promotions-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  border: 1px solid var(--qq98-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-qq98-promotions-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: var(--qq98-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-qq98-promotions-guide__hero-description {
  font-size: clamp(1em, 1.5vw, 1.3em);
  color: var(--qq98-text-secondary);
  margin-bottom: 30px;
}

.page-blog-qq98-promotions-guide__cta-button {
  display: inline-block;
  background: var(--qq98-button-gradient);
  color: var(--qq98-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-qq98-promotions-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-qq98-promotions-guide__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Section Titles */
.page-blog-qq98-promotions-guide__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--qq98-gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-qq98-promotions-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--qq98-secondary-color);
  border-radius: 2px;
}

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

/* Promotions Overview Section */
.page-blog-qq98-promotions-guide__promotions-overview {
  padding: 60px 0;
  background-color: var(--qq98-deep-green);
}

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

.page-blog-qq98-promotions-guide__promotion-card {
  background-color: var(--qq98-card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--qq98-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-qq98-promotions-guide__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-blog-qq98-promotions-guide__card-title {
  font-size: 1.5em;
  color: var(--qq98-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-qq98-promotions-guide__card-description {
  color: var(--qq98-text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-qq98-promotions-guide__card-button {
  display: inline-block;
  background: var(--qq98-button-gradient);
  color: var(--qq98-text-main);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.95em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-qq98-promotions-guide__card-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Guide Section */
.page-blog-qq98-promotions-guide__guide-section {
  padding: 60px 0;
}

.page-blog-qq98-promotions-guide__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-qq98-promotions-guide__guide-list li {
  background-color: var(--qq98-card-bg);
  border-left: 5px solid var(--qq98-secondary-color);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--qq98-text-secondary);
  font-size: 1.05em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-qq98-promotions-guide__list-item-title {
  color: var(--qq98-text-main);
  font-size: 1.2em;
  margin-bottom: 5px;
  display: block;
}

/* Benefits Section */
.page-blog-qq98-promotions-guide__benefits-section {
  padding: 60px 0;
  background-color: var(--qq98-deep-green);
}

.page-blog-qq98-promotions-guide__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-qq98-promotions-guide__benefits-list li {
  background-color: var(--qq98-card-bg);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--qq98-border);
}

.page-blog-qq98-promotions-guide__benefits-list li::before {
  content: '✓';
  color: var(--qq98-secondary-color);
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
  font-weight: bold;
}

/* Fairness Section */
.page-blog-qq98-promotions-guide__fairness-section {
  padding: 60px 0;
}

.page-blog-qq98-promotions-guide__image-full-width {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-qq98-promotions-guide__faq-section {
  padding: 60px 0;
  background-color: var(--qq98-deep-green);
}

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

.page-blog-qq98-promotions-guide__faq-item {
  background-color: var(--qq98-card-bg);
  border: 1px solid var(--qq98-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-qq98-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: var(--qq98-text-main);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--qq98-card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-qq98-promotions-guide__faq-question:hover {
  background-color: rgba(var(--qq98-primary-color), 0.1);
}

.page-blog-qq98-promotions-guide__faq-item[open] > .page-blog-qq98-promotions-guide__faq-question {
  background-color: var(--qq98-deep-green);
  border-bottom: 1px solid var(--qq98-border);
}

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

.page-blog-qq98-promotions-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--qq98-secondary-color);
  margin-left: 15px;
  line-height: 1;
}

.page-blog-qq98-promotions-guide__faq-answer {
  padding: 15px 25px 20px 25px;
  color: var(--qq98-text-secondary);
  font-size: 1.05em;
  border-top: 1px solid var(--qq98-divider);
  background-color: rgba(var(--qq98-primary-color), 0.05);
}

.page-blog-qq98-promotions-guide__faq-item:not([open]) .page-blog-qq98-promotions-guide__faq-answer {
  display: none;
}

/* Call to Action Section */
.page-blog-qq98-promotions-guide__call-to-action-section {
  padding: 80px 0;
  text-align: center;
  background: var(--qq98-deep-green);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-qq98-promotions-guide__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }
}

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

  .page-blog-qq98-promotions-guide__content-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-qq98-promotions-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-qq98-promotions-guide__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
  }

  .page-blog-qq98-promotions-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-qq98-promotions-guide__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-blog-qq98-promotions-guide__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-blog-qq98-promotions-guide__text-block,
  .page-blog-qq98-promotions-guide__guide-list li,
  .page-blog-qq98-promotions-guide__benefits-list li,
  .page-blog-qq98-promotions-guide__faq-answer {
    font-size: 1em;
  }

  .page-blog-qq98-promotions-guide__promotion-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-qq98-promotions-guide__promotion-card {
    padding: 20px;
  }

  .page-blog-qq98-promotions-guide__card-title {
    font-size: 1.3em;
  }

  .page-blog-qq98-promotions-guide__card-image {
    height: 180px;
  }

  .page-blog-qq98-promotions-guide__cta-button,
  .page-blog-qq98-promotions-guide__card-button {
    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;
    font-size: 1em;
  }

  .page-blog-qq98-promotions-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-qq98-promotions-guide__faq-toggle {
    font-size: 1.3em;
  }

  /* Image responsiveness */
  .page-blog-qq98-promotions-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-qq98-promotions-guide__hero-image,
  .page-blog-qq98-promotions-guide__card-image,
  .page-blog-qq98-promotions-guide__image-full-width {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  .page-blog-qq98-promotions-guide__video-section,
  .page-blog-qq98-promotions-guide__video-container,
  .page-blog-qq98-promotions-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-qq98-promotions-guide__video-section {
    padding-top: 10px !important;
  }

  .page-blog-qq98-promotions-guide video,
  .page-blog-qq98-promotions-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-qq98-promotions-guide__cta-buttons,
  .page-blog-qq98-promotions-guide__button-group,
  .page-blog-qq98-promotions-guide__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;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking on mobile */
  }
}

@media (max-width: 480px) {
  .page-blog-qq98-promotions-guide__hero-content {
    padding: 20px 10px;
  }

  .page-blog-qq98-promotions-guide__cta-button {
    font-size: 0.9em;
    padding: 12px 20px;
  }

  .page-blog-qq98-promotions-guide__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-blog-qq98-promotions-guide__section-title {
    font-size: clamp(1.4em, 6vw, 1.8em);
  }
}