/* style/blog-win678-latest-promotions-analysis.css */

:root {
  --page-primary-color: #C91F17;
  --page-secondary-color: #E53935;
  --page-button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  --page-card-bg: #D32F2F;
  --page-background: #B71C1C;
  --page-text-main: #FFF5E1;
  --page-border-color: #F2B544;
  --page-glow-color: #FFCC66;
  --page-gold-color: #F4D34D;
  --page-deep-red-color: #7A0E0E;
}

/* Base styles for the page content area */
.page-blog-win678-latest-promotions-analysis {
  color: var(--page-text-main); /* Ensure light text on assumed dark body background */
  background-color: var(--page-background);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-win678-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: var(--page-deep-red-color); /* Fallback or specific section background */
  overflow: hidden;
}

.page-blog-win678-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 20px;
}

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

.page-blog-win678-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-win678-latest-promotions-analysis__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--page-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-win678-latest-promotions-analysis__hero-description {
  font-size: 1.2rem;
  color: var(--page-text-main);
  margin-bottom: 30px;
}

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

/* Section Titles */
.page-blog-win678-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-gold-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-blog-win678-latest-promotions-analysis__highlight {
  color: var(--page-gold-color);
  font-weight: bold;
}

/* Buttons */
.page-blog-win678-latest-promotions-analysis__btn-primary,
.page-blog-win678-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-win678-latest-promotions-analysis__btn-primary {
  background: var(--page-button-gradient);
  color: #7A0E0E; /* Deep Red for text on gold gradient */
  border: 2px solid var(--page-border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-win678-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-win678-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--page-gold-color);
  border: 2px solid var(--page-gold-color);
}

.page-blog-win678-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--page-gold-color);
  color: var(--page-deep-red-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Featured Promotions Grid */
.page-blog-win678-latest-promotions-analysis__featured-promotions {
  padding: 60px 0;
  background-color: var(--page-background);
}

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

.page-blog-win678-latest-promotions-analysis__card {
  background-color: var(--page-card-bg); /* Use custom card background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  color: var(--page-text-main); /* Text on card background */
  border: 1px solid var(--page-border-color);
}

.page-blog-win678-latest-promotions-analysis__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

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

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

/* Lists */
.page-blog-win678-latest-promotions-analysis__ordered-list,
.page-blog-win678-latest-promotions-analysis__unordered-list {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 20px;
  color: var(--page-text-main);
}

.page-blog-win678-latest-promotions-analysis__ordered-list li,
.page-blog-win678-latest-promotions-analysis__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-blog-win678-latest-promotions-analysis__ordered-list li strong,
.page-blog-win678-latest-promotions-analysis__unordered-list li strong {
  color: var(--page-gold-color);
}

.page-blog-win678-latest-promotions-analysis__ordered-list li a,
.page-blog-win678-latest-promotions-analysis__unordered-list li a {
  color: var(--page-gold-color);
  text-decoration: underline;
}

.page-blog-win678-latest-promotions-analysis__ordered-list li a:hover,
.page-blog-win678-latest-promotions-analysis__unordered-list li a:hover {
  color: var(--page-button-gradient);
}

/* FAQ Section */
.page-blog-win678-latest-promotions-analysis__faq {
  padding: 60px 0;
  background-color: var(--page-deep-red-color);
}

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

.page-blog-win678-latest-promotions-analysis__faq-item {
  background-color: var(--page-card-bg); /* Use custom card background */
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main);
}

.page-blog-win678-latest-promotions-analysis__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--page-gold-color);
  background-color: var(--page-deep-red-color); /* Darker background for summary for contrast */
  border-bottom: 1px solid var(--page-border-color);
}

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

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

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

.page-blog-win678-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-win678-latest-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1.1rem;
  color: var(--page-text-main);
  background-color: var(--page-card-bg);
}

/* Conclusion Section */
.page-blog-win678-latest-promotions-analysis__conclusion {
  padding: 60px 0;
  text-align: center;
  background-color: var(--page-deep-red-color);
}

/* General Section Padding */
.page-blog-win678-latest-promotions-analysis__introduction,
.page-blog-win678-latest-promotions-analysis__guide,
.page-blog-win678-latest-promotions-analysis__terms-conditions {
  padding: 60px 0;
}

/* --- Responsive Styles --- */

/* Tablet and Mobile */
@media (max-width: 1024px) {
  .page-blog-win678-latest-promotions-analysis__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-win678-latest-promotions-analysis__hero-description {
    font-size: 1.1rem;
  }

  .page-blog-win678-latest-promotions-analysis__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

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

  .page-blog-win678-latest-promotions-analysis__faq-item summary {
    font-size: 1.1rem;
  }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  .page-blog-win678-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

  .page-blog-win678-latest-promotions-analysis__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-win678-latest-promotions-analysis__hero-description {
    font-size: 1rem;
  }

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

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

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

  .page-blog-win678-latest-promotions-analysis__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-blog-win678-latest-promotions-analysis__text-block {
    font-size: 1rem;
  }

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

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

  .page-blog-win678-latest-promotions-analysis__card-title {
    font-size: 1.2rem;
    padding: 15px 15px 5px;
  }

  .page-blog-win678-latest-promotions-analysis__card-text {
    font-size: 0.95rem;
    padding: 0 15px 15px;
  }

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

  .page-blog-win678-latest-promotions-analysis__ordered-list li,
  .page-blog-win678-latest-promotions-analysis__unordered-list li {
    font-size: 1rem;
  }

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

  .page-blog-win678-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
    font-size: 1rem;
  }

  /* Image and Video responsive rules */
  .page-blog-win678-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-win678-latest-promotions-analysis video,
  .page-blog-win678-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-win678-latest-promotions-analysis__section,
  .page-blog-win678-latest-promotions-analysis__card,
  .page-blog-win678-latest-promotions-analysis__container,
  .page-blog-win678-latest-promotions-analysis__video-section,
  .page-blog-win678-latest-promotions-analysis__video-container,
  .page-blog-win678-latest-promotions-analysis__video-wrapper,
  .page-blog-win678-latest-promotions-analysis__cta-buttons,
  .page-blog-win678-latest-promotions-analysis__button-group,
  .page-blog-win678-latest-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

/* Dark background for sections needing light text */
.page-blog-win678-latest-promotions-analysis__dark-bg {
  background-color: var(--page-deep-red-color);
  color: var(--page-text-main);
}

/* Light background for cards/elements on dark sections */
.page-blog-win678-latest-promotions-analysis__light-bg {
  background-color: var(--page-card-bg);
  color: var(--page-text-main);
}

/* Ensure links within text blocks have good contrast */
.page-blog-win678-latest-promotions-analysis a {
  color: var(--page-gold-color);
  text-decoration: none;
}

.page-blog-win678-latest-promotions-analysis a:hover {
  text-decoration: underline;
  color: var(--page-button-gradient);
}