/* style/blog-g666-info-promotions-guide.css */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --text-main-color: #FFF6D6;
  --card-bg-color: #111111;
  --background-color: #0A0A0A;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-g666-info-promotions-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Main text color for dark body background */
  background-color: var(--background-color); /* Assuming body background is dark */
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-g666-info-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by shared body */
  background-color: var(--background-color);
  overflow: hidden;
}

.page-blog-g666-info-promotions-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-g666-info-promotions-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-g666-info-promotions-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-blog-g666-info-promotions-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-blog-g666-info-promotions-guide__main-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-g666-info-promotions-guide__lead-text {
  font-size: 1.15rem;
  color: var(--text-main-color);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-g666-info-promotions-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-g666-info-promotions-guide__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-g666-info-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
}

.page-blog-g666-info-promotions-guide__section {
  margin-bottom: 50px;
  padding: 30px;
  background-color: var(--card-bg-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-g666-info-promotions-guide__dark-section {
  background-color: #1a1a1a;
  color: var(--text-main-color);
}

.page-blog-g666-info-promotions-guide__section-intro {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 15px;
}

.page-blog-g666-info-promotions-guide__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.5);
}

.page-blog-g666-info-promotions-guide__section p {
  margin-bottom: 15px;
  color: var(--text-main-color);
}

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

.page-blog-g666-info-promotions-guide__card {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-g666-info-promotions-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.page-blog-g666-info-promotions-guide__card-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-g666-info-promotions-guide__card-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-blog-g666-info-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-g666-info-promotions-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-blog-g666-info-promotions-guide__strategy-list,
.page-blog-g666-info-promotions-guide__mistake-list,
.page-blog-g666-info-promotions-guide__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-g666-info-promotions-guide__strategy-list li,
.page-blog-g666-info-promotions-guide__mistake-list li,
.page-blog-g666-info-promotions-guide__steps-list li {
  background-color: #1e1e1e;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: var(--text-main-color);
}

.page-blog-g666-info-promotions-guide__strategy-list li strong,
.page-blog-g666-info-promotions-guide__mistake-list li strong,
.page-blog-g666-info-promotions-guide__steps-list li strong {
  color: var(--secondary-color);
  margin-right: 10px;
  flex-shrink: 0;
}

.page-blog-g666-info-promotions-guide__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: var(--primary-color);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-blog-g666-info-promotions-guide__content-image {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 25px 0;
}

.page-blog-g666-info-promotions-guide__faq-list {
  margin-top: 30px;
}

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

details.page-blog-g666-info-promotions-guide__faq-item summary.page-blog-g666-info-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
  color: var(--secondary-color);
}

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

details.page-blog-g666-info-promotions-guide__faq-item summary.page-blog-g666-info-promotions-guide__faq-question:hover {
  background: #1e1e1e;
}

.page-blog-g666-info-promotions-guide__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}

.page-blog-g666-info-promotions-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-g666-info-promotions-guide__faq-item .page-blog-g666-info-promotions-guide__faq-answer {
  padding: 0 20px 20px;
  background: #1e1e1e;
  border-radius: 0 0 8px 8px;
  color: var(--text-main-color);
}

.page-blog-g666-info-promotions-guide__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: var(--card-bg-color);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.page-blog-g666-info-promotions-guide__related-articles {
  padding: 40px 20px;
  text-align: center;
  background-color: var(--background-color);
}

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

.page-blog-g666-info-promotions-guide__blog-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  text-decoration: none;
  color: var(--text-main-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-g666-info-promotions-guide__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.page-blog-g666-info-promotions-guide__blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-blog-g666-info-promotions-guide__blog-card-title {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-g666-info-promotions-guide__blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-main-color);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-g666-info-promotions-guide__blog-card-date {
  font-size: 0.85rem;
  color: #aaaaaa;
  text-align: right;
  display: block;
}

.page-blog-g666-info-promotions-guide__footer-info {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #888888;
  background-color: var(--background-color);
  border-top: 1px solid var(--border-color);
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-g666-info-promotions-guide {
    font-size: 15px;
  }

  .page-blog-g666-info-promotions-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-g666-info-promotions-guide__hero-image img {
    border-radius: 4px;
  }

  .page-blog-g666-info-promotions-guide__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-g666-info-promotions-guide__lead-text {
    font-size: 1rem;
  }

  .page-blog-g666-info-promotions-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-g666-info-promotions-guide__content-area,
  .page-blog-g666-info-promotions-guide__section,
  .page-blog-g666-info-promotions-guide__cta-section,
  .page-blog-g666-info-promotions-guide__related-articles {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-g666-info-promotions-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-blog-g666-info-promotions-guide__grid-cards {
    grid-template-columns: 1fr;
  }

  .page-blog-g666-info-promotions-guide__card {
    padding: 20px;
  }

  .page-blog-g666-info-promotions-guide__btn-secondary {
    padding: 10px 25px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-g666-info-promotions-guide__strategy-list li,
  .page-blog-g666-info-promotions-guide__mistake-list li,
  .page-blog-g666-info-promotions-guide__steps-list li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .page-blog-g666-info-promotions-guide__steps-list li::before {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
    margin-right: 10px;
  }

  .page-blog-g666-info-promotions-guide__content-image {
    margin: 20px 0;
  }

  details.page-blog-g666-info-promotions-guide__faq-item summary.page-blog-g666-info-promotions-guide__faq-question {
    padding: 15px;
    font-size: 1rem;
  }

  .page-blog-g666-info-promotions-guide__faq-qtext {
    font-size: 1rem;
  }

  .page-blog-g666-info-promotions-guide__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  details.page-blog-g666-info-promotions-guide__faq-item .page-blog-g666-info-promotions-guide__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-g666-info-promotions-guide__blog-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-g666-info-promotions-guide__blog-card {
    padding: 15px;
  }

  .page-blog-g666-info-promotions-guide__blog-card-image {
    height: 180px;
  }

  .page-blog-g666-info-promotions-guide__blog-card-title {
    font-size: 1.1rem;
  }

  .page-blog-g666-info-promotions-guide__blog-card-excerpt {
    font-size: 0.9rem;
  }

  /* Ensure all images are responsive */
  .page-blog-g666-info-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  /* Ensure all containers with images are responsive */
  .page-blog-g666-info-promotions-guide__section,
  .page-blog-g666-info-promotions-guide__card,
  .page-blog-g666-info-promotions-guide__container,
  .page-blog-g666-info-promotions-guide__blog-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  /* Buttons in mobile */
  .page-blog-g666-info-promotions-guide__cta-buttons,
  .page-blog-g666-info-promotions-guide__button-group,
  .page-blog-g666-info-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;
  }

  .page-blog-g666-info-promotions-guide__cta-buttons {
    flex-direction: column;
  }
}