/* style/blog-78win-latest-promotions-analysis.css */

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

/* Base styles for the page content, ensuring contrast with dark body background */
.page-blog-78win-latest-promotions-analysis {
  color: var(--78win-text-main); /* Light text for dark background */
  background-color: var(--78win-background);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog-78win-latest-promotions-analysis__dark-section {
  background-color: var(--78win-background);
  color: var(--78win-text-main);
  padding: 60px 0;
}

.page-blog-78win-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--78win-background);
  overflow: hidden;
}

.page-blog-78win-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page-blog-78win-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-78win-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content slightly over the image for visual flow */
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  border: 1px solid var(--78win-border);
}

.page-blog-78win-latest-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--78win-gold);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
}

.page-blog-78win-latest-promotions-analysis__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--78win-text-secondary);
  margin-bottom: 30px;
}

.page-blog-78win-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--78win-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.4);
}

.page-blog-78win-latest-promotions-analysis__text-block {
  font-size: 1.1rem;
  color: var(--78win-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-blog-78win-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
  box-sizing: border-box;
}

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

.page-blog-78win-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-78win-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: var(--78win-secondary-color);
  border: 2px solid var(--78win-secondary-color);
  margin-left: 15px;
}

.page-blog-78win-latest-promotions-analysis__btn-secondary:hover {
  background: var(--78win-secondary-color);
  color: var(--78win-background);
}

.page-blog-78win-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-78win-latest-promotions-analysis__card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--78win-border);
}

.page-blog-78win-latest-promotions-analysis__card-bg {
  background-color: var(--78win-card-bg);
  color: var(--78win-text-main);
}

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

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

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

.page-blog-78win-latest-promotions-analysis__card-text {
  font-size: 1rem;
  color: var(--78win-text-secondary);
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-blog-78win-latest-promotions-analysis__card-link {
  display: inline-block;
  color: var(--78win-secondary-color);
  text-decoration: none;
  font-weight: bold;
  padding: 15px 20px;
  border-top: 1px solid var(--78win-divider);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.page-blog-78win-latest-promotions-analysis__card-link:hover {
  color: var(--78win-gold);
  background-color: var(--78win-deep-green);
}

.page-blog-78win-latest-promotions-analysis__ordered-list,
.page-blog-78win-latest-promotions-analysis__unordered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-78win-latest-promotions-analysis__ordered-list li,
.page-blog-78win-latest-promotions-analysis__unordered-list li {
  background-color: var(--78win-card-bg);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--78win-primary-color);
}

.page-blog-78win-latest-promotions-analysis__ordered-list li:last-child,
.page-blog-78win-latest-promotions-analysis__unordered-list li:last-child {
  margin-bottom: 0;
}

.page-blog-78win-latest-promotions-analysis__list-title {
  font-size: 1.3rem;
  color: var(--78win-gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-78win-latest-promotions-analysis__ordered-list p,
.page-blog-78win-latest-promotions-analysis__unordered-list p {
  color: var(--78win-text-secondary);
  font-size: 1rem;
}

.page-blog-78win-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-78win-latest-promotions-analysis__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-78win-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-78win-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--78win-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-78win-latest-promotions-analysis__faq-item.page-blog-78win-latest-promotions-analysis__card-bg {
  background-color: var(--78win-card-bg);
}

.page-blog-78win-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--78win-text-main);
  transition: background-color 0.3s ease;
}

.page-blog-78win-latest-promotions-analysis__faq-question:hover {
  background-color: var(--78win-deep-green);
}

.page-blog-78win-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--78win-gold);
}

.page-blog-78win-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--78win-secondary-color);
}

.page-blog-78win-latest-promotions-analysis__faq-item[open] .page-blog-78win-latest-promotions-analysis__faq-toggle {
  content: "−";
}

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

.page-blog-78win-latest-promotions-analysis__faq-answer p {
  margin: 0;
  color: var(--78win-text-secondary);
}

.page-blog-78win-latest-promotions-analysis__faq-answer a {
  color: var(--78win-secondary-color);
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-78win-latest-promotions-analysis__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .page-blog-78win-latest-promotions-analysis__main-title {
    font-size: 2rem !important;
  }

  .page-blog-78win-latest-promotions-analysis__subtitle {
    font-size: 0.9rem !important;
  }

  .page-blog-78win-latest-promotions-analysis__section-title {
    font-size: 1.8rem !important;
  }

  .page-blog-78win-latest-promotions-analysis__text-block,
  .page-blog-78win-latest-promotions-analysis__card-text,
  .page-blog-78win-latest-promotions-analysis__ordered-list p,
  .page-blog-78win-latest-promotions-analysis__unordered-list p,
  .page-blog-78win-latest-promotions-analysis__faq-answer p {
    font-size: 1rem !important;
  }

  .page-blog-78win-latest-promotions-analysis__card-title {
    font-size: 1.2rem !important;
  }

  .page-blog-78win-latest-promotions-analysis__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-78win-latest-promotions-analysis__button-group {
    flex-direction: column !important;
    gap: 0;
  }
  
  .page-blog-78win-latest-promotions-analysis__button-group .page-blog-78win-latest-promotions-analysis__cta-button:last-child {
    margin-bottom: 0;
  }

  .page-blog-78win-latest-promotions-analysis__hero-section,
  .page-blog-78win-latest-promotions-analysis__intro-section,
  .page-blog-78win-latest-promotions-analysis__promotions-types,
  .page-blog-78win-latest-promotions-analysis__how-to-claim,
  .page-blog-78win-latest-promotions-analysis__terms-conditions,
  .page-blog-78win-latest-promotions-analysis__tips-section,
  .page-blog-78win-latest-promotions-analysis__faq-section,
  .page-blog-78win-latest-promotions-analysis__conclusion-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  .page-blog-78win-latest-promotions-analysis__hero-image,
  .page-blog-78win-latest-promotions-analysis__card-image,
  .page-blog-78win-latest-promotions-analysis__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-78win-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-78win-latest-promotions-analysis__card,
  .page-blog-78win-latest-promotions-analysis__container,
  .page-blog-78win-latest-promotions-analysis__card-grid,
  .page-blog-78win-latest-promotions-analysis__ordered-list li,
  .page-blog-78win-latest-promotions-analysis__unordered-list li,
  .page-blog-78win-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

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

  .page-blog-78win-latest-promotions-analysis__faq-question {
    font-size: 1.1rem !important;
    padding: 15px 20px !important;
  }
  .page-blog-78win-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem !important;
  }
  .page-blog-78win-latest-promotions-analysis__faq-answer {
    padding: 0 20px 15px !important;
  }
}