/* style/blog-latest-promotions-analysis.css */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-bg-color: #08160F;
  --page-card-bg: #11271B;
  --page-border-color: #2E7A4E;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-glow-color: #57E38D;
  --page-gold-color: #F2C14E;
  --page-divider-color: #1E3A2A;
  --page-deep-green: #0A4B2C;
}

.page-blog-latest-promotions-analysis {
  background-color: var(--page-bg-color);
  color: var(--page-text-main); /* Dark body background, so light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Add some padding at the bottom for footer spacing */
}

.page-blog-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--page-deep-green);
}

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

.page-blog-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  background-color: var(--page-card-bg);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-border-color);
}

.page-blog-latest-promotions-analysis__main-title {
  color: var(--page-gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-latest-promotions-analysis__hero-description {
  color: var(--page-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-blog-latest-promotions-analysis__btn-primary,
.page-blog-latest-promotions-analysis__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff; /* White text for primary button */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: var(--page-glow-color);
  border: 2px solid var(--page-glow-color);
  box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-blog-latest-promotions-analysis__btn-secondary:hover {
  background: var(--page-glow-color);
  color: var(--page-bg-color);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-blog-latest-promotions-analysis__section {
  padding: 60px 20px;
  background-color: var(--page-bg-color);
}

.page-blog-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-latest-promotions-analysis__section-title {
  color: var(--page-gold-color);
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-latest-promotions-analysis__section-subtitle {
  color: var(--page-text-secondary);
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-latest-promotions-analysis__text-block {
  color: var(--page-text-main);
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-blog-latest-promotions-analysis__text-block a {
  color: var(--page-glow-color);
  text-decoration: underline;
}

.page-blog-latest-promotions-analysis__text-block a:hover {
  color: var(--page-gold-color);
}

.page-blog-latest-promotions-analysis__promotions-grid {
  background-color: var(--page-deep-green);
}

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

.page-blog-latest-promotions-analysis__card {
  background-color: var(--page-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--page-border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-blog-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-latest-promotions-analysis__card-title {
  color: var(--page-gold-color);
  font-size: 1.4em;
  padding: 20px 20px 10px;
}

.page-blog-latest-promotions-analysis__card-description {
  color: var(--page-text-secondary);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-analysis__card .page-blog-latest-promotions-analysis__btn-primary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-blog-latest-promotions-analysis__numbered-list,
.page-blog-latest-promotions-analysis__bullet-list {
  color: var(--page-text-main);
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-analysis__numbered-list li,
.page-blog-latest-promotions-analysis__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-latest-promotions-analysis__list-highlight {
  color: var(--page-gold-color);
}

.page-blog-latest-promotions-analysis__icon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-blog-latest-promotions-analysis__icon-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: var(--page-card-bg);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid var(--page-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-analysis__icon {
  width: 50px;
  height: 50px;
  background-color: var(--page-primary-color);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  color: #ffffff;
}

/* Placeholder icons - actual icons would be SVG/font-awesome */
.page-blog-latest-promotions-analysis__icon--secure::before { content: '🔒'; }
.page-blog-latest-promotions-analysis__icon--diverse::before { content: '🎮'; }
.page-blog-latest-promotions-analysis__icon--fast::before { content: '⚡'; }
.page-blog-latest-promotions-analysis__icon--support::before { content: '📞'; }

.page-blog-latest-promotions-analysis__icon-title {
  color: var(--page-gold-color);
  font-size: 1.3em;
  margin-bottom: 5px;
}

.page-blog-latest-promotions-analysis__icon-description {
  color: var(--page-text-secondary);
  font-size: 0.95em;
}

.page-blog-latest-promotions-analysis__faq-section {
  background-color: var(--page-deep-green);
}

.page-blog-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-latest-promotions-analysis__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--page-gold-color);
  font-weight: bold;
  font-size: 1.15em;
  background-color: var(--page-card-bg);
  position: relative;
  list-style: none; /* For details/summary */
}

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

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

.page-blog-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-glow-color);
}

.page-blog-latest-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  color: var(--page-text-secondary);
  font-size: 1em;
  line-height: 1.6;
  opacity: 0.8;
}

.page-blog-latest-promotions-analysis__faq-item[open] .page-blog-latest-promotions-analysis__faq-question {
  border-bottom: 1px solid var(--page-divider-color);
}

.page-blog-latest-promotions-analysis__cta-final {
  text-align: center;
  background-color: var(--page-primary-color);
}

.page-blog-latest-promotions-analysis__cta-final .page-blog-latest-promotions-analysis__section-title {
  color: #ffffff;
  text-shadow: none;
}

.page-blog-latest-promotions-analysis__cta-final .page-blog-latest-promotions-analysis__text-block {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-analysis__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-blog-latest-promotions-analysis__main-title {
    font-size: 2.2em;
  }

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

@media (max-width: 768px) {
  .page-blog-latest-promotions-analysis__hero-content {
    margin-top: -30px;
    padding: 25px 15px;
  }

  .page-blog-latest-promotions-analysis__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-latest-promotions-analysis__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

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

  .page-blog-latest-promotions-analysis__section {
    padding: 40px 15px;
  }

  .page-blog-latest-promotions-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-blog-latest-promotions-analysis__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-blog-latest-promotions-analysis__text-block,
  .page-blog-latest-promotions-analysis__numbered-list li,
  .page-blog-latest-promotions-analysis__bullet-list li {
    font-size: 0.95em;
  }

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

  .page-blog-latest-promotions-analysis__card-title {
    font-size: 1.2em;
    padding: 15px 15px 8px;
  }

  .page-blog-latest-promotions-analysis__card-description {
    padding: 0 15px 15px;
  }

  .page-blog-latest-promotions-analysis__card .page-blog-latest-promotions-analysis__btn-primary {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
  }

  .page-blog-latest-promotions-analysis__icon-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .page-blog-latest-promotions-analysis__icon-content {
    margin-top: 10px;
  }

  .page-blog-latest-promotions-analysis__icon {
    margin-bottom: 10px;
  }

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

  .page-blog-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  /* Mobile specific image handling */
  .page-blog-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-analysis__section,
  .page-blog-latest-promotions-analysis__card,
  .page-blog-latest-promotions-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  
  .page-blog-latest-promotions-analysis__hero-section,
  .page-blog-latest-promotions-analysis__promotions-grid,
  .page-blog-latest-promotions-analysis__how-to-claim,
  .page-blog-latest-promotions-analysis__terms-conditions,
  .page-blog-latest-promotions-analysis__why-choose,
  .page-blog-latest-promotions-analysis__faq-section,
  .page-blog-latest-promotions-analysis__cta-final {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-latest-promotions-analysis__video-section {
    padding-top: 10px !important;
  }

  /* Video responsive rules */
  .page-blog-latest-promotions-analysis video,
  .page-blog-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-latest-promotions-analysis__video-section,
  .page-blog-latest-promotions-analysis__video-container,
  .page-blog-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;
  }

}