/* style/blog-78wim-new-link-promotions-guide.css */

/* Base styles for the page */
.page-blog-78wim-new-link-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-blog-78wim-new-link-promotions-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body already handles header offset, small padding-top for decoration */
  overflow: hidden;
}

.page-blog-78wim-new-link-promotions-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-blog-78wim-new-link-promotions-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-78wim-new-link-promotions-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(17, 39, 27, 0.7); /* Card B G with opacity */
  border-radius: 10px;
  margin-top: 100px; /* Push content down from top */
}

.page-blog-78wim-new-link-promotions-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-78wim-new-link-promotions-guide__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-78wim-new-link-promotions-guide__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-78wim-new-link-promotions-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-78wim-new-link-promotions-guide__content-section {
  padding: 60px 0;
}

.page-blog-78wim-new-link-promotions-guide__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-78wim-new-link-promotions-guide__intro-section p {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  text-align: justify;
}

.page-blog-78wim-new-link-promotions-guide__intro-section p strong {
  color: #F2FFF6;
}

.page-blog-78wim-new-link-promotions-guide__promotions-section {
  background-color: #11271B; /* Card B G */
  padding-bottom: 80px;
}

.page-blog-78wim-new-link-promotions-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-78wim-new-link-promotions-guide__promo-card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-blog-78wim-new-link-promotions-guide__promo-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-78wim-new-link-promotions-guide__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-78wim-new-link-promotions-guide__promo-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-78wim-new-link-promotions-guide__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-blog-78wim-new-link-promotions-guide__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F;
}

.page-blog-78wim-new-link-promotions-guide__promo-note {
  text-align: center;
  color: #A7D9B8; /* Text Secondary */
  font-style: italic;
  margin-top: 20px;
}

.page-blog-78wim-new-link-promotions-guide__guide-section {
  background-color: #08160F; /* Background */
}

.page-blog-78wim-new-link-promotions-guide__sub-title {
  font-size: 2em;
  color: #F2FFF6; /* Text Main */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-78wim-new-link-promotions-guide__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-78wim-new-link-promotions-guide__step-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-78wim-new-link-promotions-guide__step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-blog-78wim-new-link-promotions-guide__step-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-blog-78wim-new-link-promotions-guide__step-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.9em;
}

.page-blog-78wim-new-link-promotions-guide__list,
.page-blog-78wim-new-link-promotions-guide__numbered-list {
  list-style-type: disc;
  color: #A7D9B8; /* Text Secondary */
  margin: 20px 0 20px 20px;
  padding-left: 0;
}

.page-blog-78wim-new-link-promotions-guide__numbered-list {
  list-style-type: decimal;
}

.page-blog-78wim-new-link-promotions-guide__list li,
.page-blog-78wim-new-link-promotions-guide__numbered-list li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-78wim-new-link-promotions-guide__list li strong,
.page-blog-78wim-new-link-promotions-guide__numbered-list li strong {
  color: #F2FFF6;
}

.page-blog-78wim-new-link-promotions-guide__guide-section p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  text-align: justify;
}

.page-blog-78wim-new-link-promotions-guide__games-section {
  background-color: #11271B; /* Card B G */
  padding-bottom: 80px;
}

.page-blog-78wim-new-link-promotions-guide__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-78wim-new-link-promotions-guide__game-card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-78wim-new-link-promotions-guide__game-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-blog-78wim-new-link-promotions-guide__game-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.9em;
  flex-grow: 1;
}

.page-blog-78wim-new-link-promotions-guide__game-note {
  text-align: center;
  color: #A7D9B8; /* Text Secondary */
  font-style: italic;
  margin-top: 40px;
}

.page-blog-78wim-new-link-promotions-guide__features-section {
  background-color: #08160F; /* Background */
}

.page-blog-78wim-new-link-promotions-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-78wim-new-link-promotions-guide__feature-card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-78wim-new-link-promotions-guide__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-blog-78wim-new-link-promotions-guide__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.9em;
  flex-grow: 1;
}

.page-blog-78wim-new-link-promotions-guide__feature-note {
  text-align: center;
  color: #A7D9B8; /* Text Secondary */
  font-style: italic;
  margin-top: 40px;
}

.page-blog-78wim-new-link-promotions-guide__faq-section {
  background-color: #11271B; /* Card B G */
  padding-bottom: 80px;
}

.page-blog-78wim-new-link-promotions-guide__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-78wim-new-link-promotions-guide__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-78wim-new-link-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none;
  user-select: none;
}

.page-blog-78wim-new-link-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-78wim-new-link-promotions-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-blog-78wim-new-link-promotions-guide__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-blog-78wim-new-link-promotions-guide__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

.page-blog-78wim-new-link-promotions-guide__cta-section {
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-blog-78wim-new-link-promotions-guide__cta-section .page-blog-78wim-new-link-promotions-guide__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-78wim-new-link-promotions-guide__hero-content {
    padding: 30px 15px;
  }

  .page-blog-78wim-new-link-promotions-guide__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-78wim-new-link-promotions-guide__section-title {
    font-size: 2em;
  }

  .page-blog-78wim-new-link-promotions-guide__sub-title {
    font-size: 1.8em;
  }
}

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

  .page-blog-78wim-new-link-promotions-guide__container {
    padding: 0 15px;
  }

  .page-blog-78wim-new-link-promotions-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-78wim-new-link-promotions-guide__hero-content {
    margin-top: 80px;
    padding: 25px 15px;
  }

  .page-blog-78wim-new-link-promotions-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-78wim-new-link-promotions-guide__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-78wim-new-link-promotions-guide__btn-primary {
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-78wim-new-link-promotions-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-78wim-new-link-promotions-guide__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-78wim-new-link-promotions-guide__promo-grid,
  .page-blog-78wim-new-link-promotions-guide__guide-steps,
  .page-blog-78wim-new-link-promotions-guide__game-grid,
  .page-blog-78wim-new-link-promotions-guide__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-78wim-new-link-promotions-guide__promo-card,
  .page-blog-78wim-new-link-promotions-guide__step-card,
  .page-blog-78wim-new-link-promotions-guide__game-card,
  .page-blog-78wim-new-link-promotions-guide__feature-card {
    padding: 20px;
  }

  .page-blog-78wim-new-link-promotions-guide__promo-image,
  .page-blog-78wim-new-link-promotions-guide__step-image,
  .page-blog-78wim-new-link-promotions-guide__game-image,
  .page-blog-78wim-new-link-promotions-guide__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-78wim-new-link-promotions-guide__card-title {
    font-size: 1.3em;
  }

  .page-blog-78wim-new-link-promotions-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-78wim-new-link-promotions-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-78wim-new-link-promotions-guide__faq-answer {
    padding: 0 20px 15px;
  }

  /* Ensure all containers containing images, videos, or buttons are responsive */
  .page-blog-78wim-new-link-promotions-guide__section,
  .page-blog-78wim-new-link-promotions-guide__card,
  .page-blog-78wim-new-link-promotions-guide__container,
  .page-blog-78wim-new-link-promotions-guide__hero-section,
  .page-blog-78wim-new-link-promotions-guide__content-section,
  .page-blog-78wim-new-link-promotions-guide__promo-card,
  .page-blog-78wim-new-link-promotions-guide__step-card,
  .page-blog-78wim-new-link-promotions-guide__game-card,
  .page-blog-78wim-new-link-promotions-guide__feature-card,
  .page-blog-78wim-new-link-promotions-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-78wim-new-link-promotions-guide__hero-section,
  .page-blog-78wim-new-link-promotions-guide__content-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-78wim-new-link-promotions-guide__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-78wim-new-link-promotions-guide__cta-buttons,
  .page-blog-78wim-new-link-promotions-guide__button-group,
  .page-blog-78wim-new-link-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 for button groups */
  }

  .page-blog-78wim-new-link-promotions-guide__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-78wim-new-link-promotions-guide__hero-content {
    margin-top: 60px;
  }

  .page-blog-78wim-new-link-promotions-guide__main-title {
    font-size: clamp(1.3em, 7vw, 2em);
  }

  .page-blog-78wim-new-link-promotions-guide__btn-primary {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .page-blog-78wim-new-link-promotions-guide__section-title {
    font-size: 1.5em;
  }

  .page-blog-78wim-new-link-promotions-guide__card-title {
    font-size: 1.1em;
  }
}