/* style/blog-100win-nha-cai-promotions-analysis.css */

/* Global styles for this page content */
.page-blog-100win-nha-cai-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color, adjust based on section background */
  background-color: var(--background); /* Default background, overridden by sections */
}

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

/* Hero Section */
.page-blog-100win-nha-cai-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-main);
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-100win-nha-cai-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 300px; /* Minimum height for hero image */
}

.page-blog-100win-nha-cai-promotions-analysis__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over image, but not covering it fully */
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with some transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.page-blog-100win-nha-cai-promotions-analysis__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
  line-height: 1.2;
}

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

.page-blog-100win-nha-cai-promotions-analysis__hero-cta {
  margin-top: 20px;
}

/* General Section Styles */
.page-blog-100win-nha-cai-promotions-analysis__section {
  padding: 60px 0;
  color: var(--text-main); /* Default for dark sections */
}

.page-blog-100win-nha-cai-promotions-analysis__dark-bg {
  background-color: var(--background);
  color: var(--text-main);
}

.page-blog-100win-nha-cai-promotions-analysis__light-bg {
  background-color: var(--card-bg); /* Using card bg for light section to maintain theme */
  color: var(--text-main);
}

.page-blog-100win-nha-cai-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-100win-nha-cai-promotions-analysis__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-100win-nha-cai-promotions-analysis__content-block {
  margin-bottom: 40px;
}

.page-blog-100win-nha-cai-promotions-analysis__content-subtitle {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-100win-nha-cai-promotions-analysis__paragraph {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: var(--text-secondary);
}

.page-blog-100win-nha-cai-promotions-analysis__paragraph strong {
  color: var(--text-main);
}

/* Grid Layout for Cards */
.page-blog-100win-nha-cai-promotions-analysis__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-100win-nha-cai-promotions-analysis__card {
  background-color: var(--background); /* Use deep green for card background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-blog-100win-nha-cai-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-100win-nha-cai-promotions-analysis__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--primary-color);
}

.page-blog-100win-nha-cai-promotions-analysis__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-blog-100win-nha-cai-promotions-analysis__card-text {
  font-size: 1em;
  color: var(--text-secondary);
  flex-grow: 1;
}

/* List Styles */
.page-blog-100win-nha-cai-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-100win-nha-cai-promotions-analysis__list-item {
  background-color: var(--background); /* Use deep green for list items */
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-blog-100win-nha-cai-promotions-analysis__list-item strong {
  color: var(--gold-color);
}

.page-blog-100win-nha-cai-promotions-analysis__list-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-blog-100win-nha-cai-promotions-analysis__list-text {
  color: var(--text-secondary);
}

/* Call to Action Section */
.page-blog-100win-nha-cai-promotions-analysis__cta-section,
.page-blog-100win-nha-cai-promotions-analysis__cta-final {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-blog-100win-nha-cai-promotions-analysis__cta-text {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--gold-color);
}

/* Buttons */
.page-blog-100win-nha-cai-promotions-analysis__btn-primary {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff; /* Button text always white for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-100win-nha-cai-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-color);
}

/* FAQ Section */
.page-blog-100win-nha-cai-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-100win-nha-cai-promotions-analysis__faq-item {
  background-color: var(--background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-100win-nha-cai-promotions-analysis__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
}

.page-blog-100win-nha-cai-promotions-analysis__faq-item summary:hover {
  background-color: var(--deep-green);
}

.page-blog-100win-nha-cai-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none; /* Hide marker for Webkit browsers */
}

.page-blog-100win-nha-cai-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-100win-nha-cai-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-100win-nha-cai-promotions-analysis__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 1.05em;
  color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-100win-nha-cai-promotions-analysis__hero-content {
    margin-top: -80px;
    padding: 30px 15px;
  }

  .page-blog-100win-nha-cai-promotions-analysis__hero-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-100win-nha-cai-promotions-analysis__section-title {
    font-size: 2em;
  }

  .page-blog-100win-nha-cai-promotions-analysis__content-subtitle {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  /* Mobile images responsiveness */
  .page-blog-100win-nha-cai-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-100win-nha-cai-promotions-analysis__hero-image {
    min-height: 200px;
  }

  .page-blog-100win-nha-cai-promotions-analysis__section,
  .page-blog-100win-nha-cai-promotions-analysis__card,
  .page-blog-100win-nha-cai-promotions-analysis__container,
  .page-blog-100win-nha-cai-promotions-analysis__cta-section,
  .page-blog-100win-nha-cai-promotions-analysis__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-100win-nha-cai-promotions-analysis__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for section's own small top margin */
  }

  .page-blog-100win-nha-cai-promotions-analysis__hero-content {
    margin-top: -60px;
    padding: 20px 15px;
  }

  .page-blog-100win-nha-cai-promotions-analysis__hero-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
    line-height: 1.3;
  }

  .page-blog-100win-nha-cai-promotions-analysis__hero-description {
    font-size: 1em;
  }

  .page-blog-100win-nha-cai-promotions-analysis__section-title {
    font-size: 1.8em;
  }

  .page-blog-100win-nha-cai-promotions-analysis__content-subtitle {
    font-size: 1.4em;
  }

  .page-blog-100win-nha-cai-promotions-analysis__grid-layout {
    grid-template-columns: 1fr;
  }

  /* Mobile buttons responsiveness */
  .page-blog-100win-nha-cai-promotions-analysis__btn-primary,
  .page-blog-100win-nha-cai-promotions-analysis a[class*="button"],
  .page-blog-100win-nha-cai-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-100win-nha-cai-promotions-analysis__cta-buttons,
  .page-blog-100win-nha-cai-promotions-analysis__button-group,
  .page-blog-100win-nha-cai-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-100win-nha-cai-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  .page-blog-100win-nha-cai-promotions-analysis__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-blog-100win-nha-cai-promotions-analysis__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
}