/* style/blog-sodo99-latest-promotions-analysis.css */
.page-blog-sodo99-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main for overall dark body background */
  background-color: #08160F; /* Background */
}

.page-blog-sodo99-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-sodo99-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding */
  overflow: hidden;
}

.page-blog-sodo99-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-blog-sodo99-latest-promotions-analysis__hero-content {
  position: relative; /* Ensure content is above any potential background */
  z-index: 2; /* Ensure content is on top */
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G with transparency */
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-sodo99-latest-promotions-analysis__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  /* No fixed font-size for H1, relying on responsive scaling */
}

.page-blog-sodo99-latest-promotions-analysis__subtitle {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-sodo99-latest-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-sodo99-latest-promotions-analysis__btn-primary,
.page-blog-sodo99-latest-promotions-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-sodo99-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-blog-sodo99-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-blog-sodo99-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-sodo99-latest-promotions-analysis__btn-secondary:hover {
  background-color: #11271B; /* Card B G */
  border-color: #57E38D; /* Glow */
}

.page-blog-sodo99-latest-promotions-analysis__btn-primary--small,
.page-blog-sodo99-latest-promotions-analysis__btn-secondary--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-blog-sodo99-latest-promotions-analysis__btn-primary--large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-blog-sodo99-latest-promotions-analysis__content-section {
  padding: 50px 0;
}

.page-blog-sodo99-latest-promotions-analysis__light-bg {
  background-color: #0A4B2C; /* Deep Green, slightly lighter than body background for contrast */
  color: #F2FFF6; /* Text Main */
}

.page-blog-sodo99-latest-promotions-analysis__dark-bg {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
}

.page-blog-sodo99-latest-promotions-analysis__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2C14E; /* Gold */
}

.page-blog-sodo99-latest-promotions-analysis__section-title--light {
  color: #F2FFF6; /* Text Main */
}

.page-blog-sodo99-latest-promotions-analysis__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sodo99-latest-promotions-analysis__text-block--light {
    color: #F2FFF6; /* Text Main */
}

.page-blog-sodo99-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-sodo99-latest-promotions-analysis__promotions-grid {
  padding: 50px 0;
}

.page-blog-sodo99-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-sodo99-latest-promotions-analysis__promo-card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-blog-sodo99-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 15px #57E38D; /* Glow */
}

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

.page-blog-sodo99-latest-promotions-analysis__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-sodo99-latest-promotions-analysis__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-blog-sodo99-latest-promotions-analysis__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-sodo99-latest-promotions-analysis__feature-item {
  text-align: center;
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-blog-sodo99-latest-promotions-analysis__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-sodo99-latest-promotions-analysis__feature-title {
  font-size: 1.25em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-sodo99-latest-promotions-analysis__feature-text {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sodo99-latest-promotions-analysis__how-to-claim {
  padding: 50px 0;
}

.page-blog-sodo99-latest-promotions-analysis__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-blog-sodo99-latest-promotions-analysis__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-blog-sodo99-latest-promotions-analysis__step-item::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #2E7A4E; /* Border */
  z-index: 0;
}

.page-blog-sodo99-latest-promotions-analysis__step-item:last-child::before {
  height: 30px; /* Stop the line before the last number */
}

.page-blog-sodo99-latest-promotions-analysis__step-number {
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-blog-sodo99-latest-promotions-analysis__step-content {
  flex-grow: 1;
}

.page-blog-sodo99-latest-promotions-analysis__step-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-sodo99-latest-promotions-analysis__step-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sodo99-latest-promotions-analysis__faq-section {
  padding: 50px 0;
}

.page-blog-sodo99-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-sodo99-latest-promotions-analysis__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-sodo99-latest-promotions-analysis__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  outline: none;
}

.page-blog-sodo99-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-sodo99-latest-promotions-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-blog-sodo99-latest-promotions-analysis__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Gold */
}

.page-blog-sodo99-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-sodo99-latest-promotions-analysis__faq-item[open] .page-blog-sodo99-latest-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-sodo99-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-sodo99-latest-promotions-analysis__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-sodo99-latest-promotions-analysis__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-sodo99-latest-promotions-analysis__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-sodo99-latest-promotions-analysis__cta-container .page-blog-sodo99-latest-promotions-analysis__text-block {
  max-width: 800px;
  margin-bottom: 30px;
}

.page-blog-sodo99-latest-promotions-analysis .highlight {
    color: #F2C14E; /* Gold */
    font-weight: bold;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-blog-sodo99-latest-promotions-analysis__main-title {
    font-size: 2.5em;
  }

  .page-blog-sodo99-latest-promotions-analysis__section-title {
    font-size: 1.8em;
  }
}

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

  .page-blog-sodo99-latest-promotions-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-sodo99-latest-promotions-analysis__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-sodo99-latest-promotions-analysis__hero-image {
    max-height: 400px;
  }

  .page-blog-sodo99-latest-promotions-analysis__hero-content {
    padding: 15px;
  }

  .page-blog-sodo99-latest-promotions-analysis__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .page-blog-sodo99-latest-promotions-analysis__subtitle {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-sodo99-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-sodo99-latest-promotions-analysis__btn-primary,
  .page-blog-sodo99-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-sodo99-latest-promotions-analysis__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-blog-sodo99-latest-promotions-analysis__content-section,
  .page-blog-sodo99-latest-promotions-analysis__promotions-grid,
  .page-blog-sodo99-latest-promotions-analysis__how-to-claim,
  .page-blog-sodo99-latest-promotions-analysis__faq-section,
  .page-blog-sodo99-latest-promotions-analysis__cta-section {
    padding: 30px 0;
  }

  .page-blog-sodo99-latest-promotions-analysis__container {
    padding: 0 15px;
  }

  .page-blog-sodo99-latest-promotions-analysis__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-sodo99-latest-promotions-analysis__promo-card {
    padding: 20px;
  }

  .page-blog-sodo99-latest-promotions-analysis__card-image {
    height: 180px;
  }

  .page-blog-sodo99-latest-promotions-analysis__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-sodo99-latest-promotions-analysis__feature-icon {
    width: 80px;
    height: 80px;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-sodo99-latest-promotions-analysis__step-item {
    padding-left: 60px;
  }

  .page-blog-sodo99-latest-promotions-analysis__step-item::before {
    left: 25px;
  }

  .page-blog-sodo99-latest-promotions-analysis__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }

  .page-blog-sodo99-latest-promotions-analysis__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-sodo99-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-blog-sodo99-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-sodo99-latest-promotions-analysis__section,
  .page-blog-sodo99-latest-promotions-analysis__card,
  .page-blog-sodo99-latest-promotions-analysis__container,
  .page-blog-sodo99-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-sodo99-latest-promotions-analysis__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

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

@media (max-width: 480px) {
  .page-blog-sodo99-latest-promotions-analysis__main-title {
    font-size: 1.8em;
  }

  .page-blog-sodo99-latest-promotions-analysis__section-title {
    font-size: 1.4em;
  }

  .page-blog-sodo99-latest-promotions-analysis__hero-image {
    max-height: 300px;
  }
}