.page-resources-68game-promo-strategy {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-color: #EA7C07;
  --background-light: #FFFFFF;
  --background-dark: rgba(0, 0, 0, 0.2);
  color: var(--text-light); /* Default text color for the page, assuming dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-68game-promo-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: calc(var(--header-offset, 120px) + 80px); /* Ensure space for fixed header */
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, #1a7fb3 100%);
  overflow: hidden;
  min-height: 500px;
  color: var(--text-light);
}

.page-resources-68game-promo-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-68game-promo-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-68game-promo-strategy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-68game-promo-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-68game-promo-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-68game-promo-strategy__btn-primary {
  background-color: var(--login-color); /* Use login color for primary CTA */
  color: var(--text-light);
  border: 2px solid var(--login-color);
}

.page-resources-68game-promo-strategy__btn-primary:hover {
  background-color: #d16e00;
  transform: translateY(-2px);
}

.page-resources-68game-promo-strategy__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-68game-promo-strategy__btn-secondary:hover {
  background-color: #e6e6e6;
  transform: translateY(-2px);
}

.page-resources-68game-promo-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-resources-68game-promo-strategy__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-resources-68game-promo-strategy__intro-section .page-resources-68game-promo-strategy__section-title,
.page-resources-68game-promo-strategy__strategy-section .page-resources-68game-promo-strategy__section-title,
.page-resources-68game-promo-strategy__faq-section .page-resources-68game-promo-strategy__section-title {
  color: var(--text-dark);
}

.page-resources-68game-promo-strategy__promo-types .page-resources-68game-promo-strategy__section-title,
.page-resources-68game-promo-strategy__terms-video .page-resources-68game-promo-strategy__section-title,
.page-resources-68game-promo-strategy__conclusion-section .page-resources-68game-promo-strategy__section-title {
  color: var(--text-light);
}

.page-resources-68game-promo-strategy__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
}

.page-resources-68game-promo-strategy__intro-section .page-resources-68game-promo-strategy__text-block,
.page-resources-68game-promo-strategy__strategy-section .page-resources-68game-promo-strategy__text-block,
.page-resources-68game-promo-strategy__faq-section .page-resources-68game-promo-strategy__text-block {
  color: var(--text-dark);
}

.page-resources-68game-promo-strategy__promo-types .page-resources-68game-promo-strategy__text-block,
.page-resources-68game-promo-strategy__terms-video .page-resources-68game-promo-strategy__text-block,
.page-resources-68game-promo-strategy__conclusion-section .page-resources-68game-promo-strategy__text-block {
  color: var(--text-light);
}

.page-resources-68game-promo-strategy__content-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-68game-promo-strategy__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-resources-68game-promo-strategy__dark-bg {
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, #1a7fb3 100%);
  color: var(--text-light);
}

.page-resources-68game-promo-strategy__promo-grid,
.page-resources-68game-promo-strategy__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-68game-promo-strategy__promo-card,
.page-resources-68game-promo-strategy__strategy-card {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
}

.page-resources-68game-promo-strategy__promo-card:hover,
.page-resources-68game-promo-strategy__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-68game-promo-strategy__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-resources-68game-promo-strategy__card-text {
  font-size: 1em;
  line-height: 1.7;
  flex-grow: 1;
}

.page-resources-68game-promo-strategy__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-68game-promo-strategy__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  display: block;
}

.page-resources-68game-promo-strategy__faq-section {
  padding: 60px 0;
}

.page-resources-68game-promo-strategy__faq-list {
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.page-resources-68game-promo-strategy__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-68game-promo-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.page-resources-68game-promo-strategy__faq-question:hover {
  color: #1a7fb3;
}

.page-resources-68game-promo-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-68game-promo-strategy__faq-item.active .page-resources-68game-promo-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-68game-promo-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-dark);
}

.page-resources-68game-promo-strategy__faq-item.active .page-resources-68game-promo-strategy__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px;
}

.page-resources-68game-promo-strategy__faq-answer p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-resources-68game-promo-strategy__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-68game-promo-strategy__hero-title {
    font-size: 2.8em;
  }
  .page-resources-68game-promo-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-resources-68game-promo-strategy__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-68game-promo-strategy {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-68game-promo-strategy__hero-section {
    padding-top: calc(var(--header-offset, 120px) + 40px) !important;
    padding-bottom: 40px;
  }
  .page-resources-68game-promo-strategy__hero-title {
    font-size: 2.2em;
  }
  .page-resources-68game-promo-strategy__hero-description {
    font-size: 1em;
  }
  .page-resources-68game-promo-strategy__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-68game-promo-strategy__container {
    padding: 20px 15px;
  }
  .page-resources-68game-promo-strategy__section-title {
    font-size: 1.8em;
  }
  .page-resources-68game-promo-strategy__text-block {
    font-size: 1em;
  }
  .page-resources-68game-promo-strategy__promo-grid,
  .page-resources-68game-promo-strategy__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-68game-promo-strategy__promo-card,
  .page-resources-68game-promo-strategy__strategy-card {
    padding: 20px;
  }
  .page-resources-68game-promo-strategy__card-title {
    font-size: 1.3em;
  }
  
  /* Image responsive rules */
  .page-resources-68game-promo-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-68game-promo-strategy__section,
  .page-resources-68game-promo-strategy__card,
  .page-resources-68game-promo-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsive rules */
  .page-resources-68game-promo-strategy video,
  .page-resources-68game-promo-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-68game-promo-strategy__video-section,
  .page-resources-68game-promo-strategy__video-container,
  .page-resources-68game-promo-strategy__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-68game-promo-strategy__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
  }

  /* Button responsive rules */
  .page-resources-68game-promo-strategy__cta-button,
  .page-resources-68game-promo-strategy__btn-primary,
  .page-resources-68game-promo-strategy__btn-secondary,
  .page-resources-68game-promo-strategy a[class*="button"],
  .page-resources-68game-promo-strategy 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-resources-68game-promo-strategy__cta-buttons,
  .page-resources-68game-promo-strategy__button-group,
  .page-resources-68game-promo-strategy__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;
  }
}