/* style/blog-c1689-promotions-analysis.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-c1689-promotions-analysis {
  background-color: var(--background, #08160F); /* Fallback to custom background color */
  color: var(--text-main, #F2FFF6); /* Main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* General text colors for elements within this page */
.page-blog-c1689-promotions-analysis p,
.page-blog-c1689-promotions-analysis li {
  color: var(--text-main, #F2FFF6);
}

.page-blog-c1689-promotions-analysis a {
  color: var(--gold, #F2C14E); /* Link color */
  text-decoration: none;
}

.page-blog-c1689-promotions-analysis a:hover {
  text-decoration: underline;
}

.page-blog-c1689-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-c1689-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit height for hero image */
}

.page-blog-c1689-promotions-analysis__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow, ensure text is below image */
  position: relative;
  z-index: 1;
  background-color: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
  padding: 30px;
  border-radius: 8px;
}

.page-blog-c1689-promotions-analysis__main-title {
  font-size: clamp(2em, 3.5vw, 3.5em); /* Responsive font size for H1 */
  color: var(--text-main, #F2FFF6);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-c1689-promotions-analysis__intro-text {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

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

.page-blog-c1689-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-c1689-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background, #08160F);
}

.page-blog-c1689-promotions-analysis__section-title {
  font-size: 2.5em;
  color: var(--gold, #F2C14E);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
  font-weight: bold;
}

.page-blog-c1689-promotions-analysis__promotion-list,
.page-blog-c1689-promotions-analysis__terms-list,
.page-blog-c1689-promotions-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-c1689-promotions-analysis__promotion-item,
.page-blog-c1689-promotions-analysis__terms-list li,
.page-blog-c1689-promotions-analysis__benefits-list li {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-c1689-promotions-analysis__promotion-subtitle,
.page-blog-c1689-promotions-analysis__step-title,
.page-blog-c1689-promotions-analysis__promotion-heading,
.page-blog-c1689-promotions-analysis__game-title {
  font-size: 1.6em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-c1689-promotions-analysis__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  padding: 30px;
}

.page-blog-c1689-promotions-analysis__content-image {
  flex: 1;
  max-width: 50%;
  border-radius: 8px;
  height: auto;
  display: block;
  min-width: 200px; /* Enforce min size */
}

.page-blog-c1689-promotions-analysis__text-content {
  flex: 1;
}

.page-blog-c1689-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--background, #08160F); /* Dark background */
  color: var(--gold, #F2C14E); /* Gold text */
  border: 2px solid var(--gold, #F2C14E); /* Gold border */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-blog-c1689-promotions-analysis__btn-secondary:hover {
  background: var(--gold, #F2C14E);
  color: var(--background, #08160F); /* Dark text on hover */
}

.page-blog-c1689-promotions-analysis__steps-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 40px;
}

.page-blog-c1689-promotions-analysis__steps-list li {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-main, #F2FFF6);
}

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

.page-blog-c1689-promotions-analysis__game-card {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-c1689-promotions-analysis__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-c1689-promotions-analysis__game-title {
  font-size: 1.4em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-c1689-promotions-analysis__game-title a {
  color: var(--text-main, #F2FFF6); /* Ensure link color is readable */
}

.page-blog-c1689-promotions-analysis__game-card p {
  color: var(--text-secondary, #A7D9B8);
  padding: 0 15px;
}

.page-blog-c1689-promotions-analysis__faq-list {
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-blog-c1689-promotions-analysis__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-c1689-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C); /* Slightly darker for question header */
  border-bottom: 1px solid var(--divider, #1E3A2A);
  list-style: none; /* For details/summary */
}

.page-blog-c1689-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-c1689-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-c1689-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-c1689-promotions-analysis__faq-answer {
  padding: 20px 25px;
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.05em;
  background-color: var(--card-bg, #11271B);
}

.page-blog-c1689-promotions-analysis__cta-section {
  background-color: var(--deep-green, #0A4B2C); /* Use a darker brand green for CTA */
  padding: 60px 20px;
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid var(--border, #2E7A4E);
}

.page-blog-c1689-promotions-analysis__cta-title {
  font-size: 2.8em;
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-c1689-promotions-analysis__cta-description {
  font-size: 1.2em;
  color: var(--text-secondary, #A7D9B8);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-blog-c1689-promotions-analysis__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-c1689-promotions-analysis__image-text-block {
    flex-direction: column;
  }
  .page-blog-c1689-promotions-analysis__content-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-c1689-promotions-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-c1689-promotions-analysis__hero-content {
    margin-top: -60px; /* Adjust overlap for mobile */
    padding: 20px;
  }
  .page-blog-c1689-promotions-analysis__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }
  .page-blog-c1689-promotions-analysis__intro-text {
    font-size: 1em;
  }
  .page-blog-c1689-promotions-analysis__section-title {
    font-size: 2em;
  }
  .page-blog-c1689-promotions-analysis__image-text-block {
    flex-direction: column;
    padding: 20px;
  }
  .page-blog-c1689-promotions-analysis__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-c1689-promotions-analysis__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-c1689-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-c1689-promotions-analysis__section,
  .page-blog-c1689-promotions-analysis__card,
  .page-blog-c1689-promotions-analysis__container,
  .page-blog-c1689-promotions-analysis__image-text-block,
  .page-blog-c1689-promotions-analysis__game-card,
  .page-blog-c1689-promotions-analysis__faq-item,
  .page-blog-c1689-promotions-analysis__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-c1689-promotions-analysis__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-c1689-promotions-analysis__btn-primary,
  .page-blog-c1689-promotions-analysis__btn-secondary,
  .page-blog-c1689-promotions-analysis a[class*="button"],
  .page-blog-c1689-promotions-analysis 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-blog-c1689-promotions-analysis__cta-title {
    font-size: 2em;
  }
  .page-blog-c1689-promotions-analysis__cta-description {
    font-size: 1em;
  }
}