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

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

.page-blog-m66-latest-promotions-analysis {
  color: var(--m66-text-main); /* Default text color for dark background */
  background-color: var(--m66-background-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog-m66-latest-promotions-analysis__container--center {
  text-align: center;
}

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

.page-blog-m66-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-m66-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin-top: 40px;
  text-align: center;
  padding: 0 20px;
  color: var(--m66-text-main);
}

.page-blog-m66-latest-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: var(--m66-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

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

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

.page-blog-m66-latest-promotions-analysis__btn-primary,
.page-blog-m66-latest-promotions-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog-m66-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-m66-latest-promotions-analysis__btn-secondary {
  background: none;
  color: var(--m66-glow-color); /* Glow color for secondary button text */
  border: 2px solid var(--m66-glow-color);
}

.page-blog-m66-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--m66-glow-color);
  color: var(--m66-background-color); /* Dark text on hover */
}

.page-blog-m66-latest-promotions-analysis__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--m66-gold-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-m66-latest-promotions-analysis__content-area,
.page-blog-m66-latest-promotions-analysis__how-to-claim,
.page-blog-m66-latest-promotions-analysis__tips,
.page-blog-m66-latest-promotions-analysis__faq-section {
  padding: 60px 0;
  background-color: var(--m66-background-color);
  color: var(--m66-text-main);
}

.page-blog-m66-latest-promotions-analysis__promotion-types,
.page-blog-m66-latest-promotions-analysis__terms-conditions,
.page-blog-m66-latest-promotions-analysis__safety-security,
.page-blog-m66-latest-promotions-analysis__cta-bottom {
  padding: 60px 0;
  background-color: var(--m66-deep-green);
  color: var(--m66-text-main);
}

.page-blog-m66-latest-promotions-analysis__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--m66-text-secondary);
  text-align: justify;
}

.page-blog-m66-latest-promotions-analysis__text-block--center {
  text-align: center;
}

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

.page-blog-m66-latest-promotions-analysis__grid--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

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

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

.page-blog-m66-latest-promotions-analysis__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--m66-border-color);
}

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

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

.page-blog-m66-latest-promotions-analysis__card-button {
  margin: 0 25px 25px;
  width: calc(100% - 50px);
}

.page-blog-m66-latest-promotions-analysis__list-item {
  background-color: var(--m66-card-bg);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--m66-border-color);
}

.page-blog-m66-latest-promotions-analysis__list-item:last-child {
  margin-bottom: 0;
}

.page-blog-m66-latest-promotions-analysis__list-title {
  font-size: 1.6rem;
  color: var(--m66-gold-color);
  margin-bottom: 10px;
}

.page-blog-m66-latest-promotions-analysis__list-text {
  font-size: 1.05rem;
  color: var(--m66-text-secondary);
  margin-bottom: 15px;
}

.page-blog-m66-latest-promotions-analysis__list-button {
  margin-top: 10px;
}

.page-blog-m66-latest-promotions-analysis__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-m66-latest-promotions-analysis__bullet-list .page-blog-m66-latest-promotions-analysis__list-item {
  background: none;
  box-shadow: none;
  border: none;
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--m66-divider-color);
  color: var(--m66-text-secondary);
  font-size: 1.05rem;
}

.page-blog-m66-latest-promotions-analysis__bullet-list .page-blog-m66-latest-promotions-analysis__list-item:last-child {
  border-bottom: none;
}

.page-blog-m66-latest-promotions-analysis__list-strong {
  color: var(--m66-text-main);
}

.page-blog-m66-latest-promotions-analysis__inline-link {
  color: var(--m66-glow-color);
  text-decoration: none;
  font-weight: bold;
}

.page-blog-m66-latest-promotions-analysis__inline-link:hover {
  text-decoration: underline;
}

.page-blog-m66-latest-promotions-analysis__tip-card {
  background-color: var(--m66-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--m66-border-color);
  text-align: center;
  color: var(--m66-text-main);
}

.page-blog-m66-latest-promotions-analysis__tip-title {
  font-size: 1.4rem;
  color: var(--m66-gold-color);
  margin-bottom: 15px;
}

.page-blog-m66-latest-promotions-analysis__tip-text {
  font-size: 1rem;
  color: var(--m66-text-secondary);
}

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

.page-blog-m66-latest-promotions-analysis__faq-item {
  background-color: var(--m66-card-bg);
  border: 1px solid var(--m66-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--m66-text-main);
}

.page-blog-m66-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--m66-deep-green);
  color: var(--m66-text-main);
  border-bottom: 1px solid var(--m66-border-color);
  list-style: none;
}

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

.page-blog-m66-latest-promotions-analysis__faq-question:hover {
  background-color: var(--m66-primary-color);
}

.page-blog-m66-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--m66-text-main);
}

.page-blog-m66-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: var(--m66-gold-color);
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-m66-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-m66-latest-promotions-analysis__section-title {
    font-size: 2rem;
  }
  .page-blog-m66-latest-promotions-analysis__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-blog-m66-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-m66-latest-promotions-analysis__hero-content {
    margin-top: 20px;
  }
  .page-blog-m66-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-m66-latest-promotions-analysis__hero-description {
    font-size: 1rem;
  }
  .page-blog-m66-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-m66-latest-promotions-analysis__btn-primary,
  .page-blog-m66-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-m66-latest-promotions-analysis__card-button {
    width: calc(100% - 50px) !important;
  }
  .page-blog-m66-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-m66-latest-promotions-analysis__content-area,
  .page-blog-m66-latest-promotions-analysis__promotion-types,
  .page-blog-m66-latest-promotions-analysis__how-to-claim,
  .page-blog-m66-latest-promotions-analysis__terms-conditions,
  .page-blog-m66-latest-promotions-analysis__tips,
  .page-blog-m66-latest-promotions-analysis__safety-security,
  .page-blog-m66-latest-promotions-analysis__faq-section,
  .page-blog-m66-latest-promotions-analysis__cta-bottom {
    padding: 40px 0;
  }
  .page-blog-m66-latest-promotions-analysis__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-m66-latest-promotions-analysis__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }
  .page-blog-m66-latest-promotions-analysis__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-m66-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-m66-latest-promotions-analysis__card-image {
    height: 180px;
  }
  .page-blog-m66-latest-promotions-analysis__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-blog-m66-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
  }
  .page-blog-m66-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-blog-m66-latest-promotions-analysis__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-blog-m66-latest-promotions-analysis__hero-description {
    font-size: 0.95rem;
  }
  .page-blog-m66-latest-promotions-analysis__section-title {
    font-size: 1.5rem;
  }
  .page-blog-m66-latest-promotions-analysis__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-m66-latest-promotions-analysis__grid--two-columns {
    grid-template-columns: 1fr;
  }
  .page-blog-m66-latest-promotions-analysis__card-title {
    font-size: 1.3rem;
  }
  .page-blog-m66-latest-promotions-analysis__list-title {
    font-size: 1.4rem;
  }
}