/* style/blog-ae666-latest-promotions.css */

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

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

/* General container and section styling */
.page-blog-ae666-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-ae666-latest-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--ae666-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-ae666-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--ae666-gold-color);
  border-radius: 2px;
}

.page-blog-ae666-latest-promotions__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: var(--ae666-text-secondary);
}

/* Hero Section */
.page-blog-ae666-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--ae666-deep-green-color);
  overflow: hidden;
}

.page-blog-ae666-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-ae666-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-ae666-latest-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-blog-ae666-latest-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* clamp for h1 font-size */
  font-weight: 800;
  color: var(--ae666-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-ae666-latest-promotions__subtitle {
  font-size: 1.2em;
  color: var(--ae666-text-secondary);
  margin-bottom: 30px;
}

/* Buttons */
.page-blog-ae666-latest-promotions__btn-primary,
.page-blog-ae666-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-ae666-latest-promotions__btn-primary {
  background: var(--ae666-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ae666-latest-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-ae666-latest-promotions__btn-secondary {
  background: var(--ae666-card-bg);
  color: var(--ae666-primary-color);
  border: 2px solid var(--ae666-primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-ae666-latest-promotions__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--ae666-primary-color);
  color: #ffffff;
}

/* Content Area */
.page-blog-ae666-latest-promotions__content-area {
  background-color: #ffffff;
  color: #333333; /* Deep text color for light background */
  padding: 80px 0;
}

.page-blog-ae666-latest-promotions__content-area .page-blog-ae666-latest-promotions__section-title,
.page-blog-ae666-latest-promotions__content-area .page-blog-ae666-latest-promotions__text-block {
  color: #333333;
}

.page-blog-ae666-latest-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-ae666-latest-promotions__card {
  background: var(--ae666-card-bg);
  color: var(--ae666-text-main);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--ae666-border-color);
}

.page-blog-ae666-latest-promotions__content-area .page-blog-ae666-latest-promotions__card {
  background: #f5f5f5; /* Light background for cards in light section */
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-ae666-latest-promotions__feature-title {
  font-size: 1.5em;
  color: var(--ae666-primary-color);
  margin-bottom: 15px;
}

.page-blog-ae666-latest-promotions__content-area .page-blog-ae666-latest-promotions__feature-title {
  color: var(--ae666-primary-color);
}

.page-blog-ae666-latest-promotions__feature-description {
  font-size: 1em;
  color: var(--ae666-text-secondary);
}

.page-blog-ae666-latest-promotions__content-area .page-blog-ae666-latest-promotions__feature-description {
  color: #555555;
}

.page-blog-ae666-latest-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Promotions Section */
.page-blog-ae666-latest-promotions__promotions-section {
  background-color: var(--ae666-background);
  color: var(--ae666-text-main);
  padding: 80px 0;
}

.page-blog-ae666-latest-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-ae666-latest-promotions__promo-card {
  text-align: center;
}

.page-blog-ae666-latest-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-ae666-latest-promotions__promo-title {
  font-size: 1.4em;
  color: var(--ae666-gold-color);
  margin-bottom: 10px;
}

.page-blog-ae666-latest-promotions__promo-description {
  font-size: 0.95em;
  color: var(--ae666-text-secondary);
  margin-bottom: 20px;
}

/* Guide Section */
.page-blog-ae666-latest-promotions__guide-section {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-blog-ae666-latest-promotions__guide-section .page-blog-ae666-latest-promotions__section-title,
.page-blog-ae666-latest-promotions__guide-section .page-blog-ae666-latest-promotions__text-block {
  color: #333333;
}

.page-blog-ae666-latest-promotions__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-blog-ae666-latest-promotions__step-item {
  text-align: center;
  padding-bottom: 30px;
}

.page-blog-ae666-latest-promotions__guide-section .page-blog-ae666-latest-promotions__card {
  background: #f5f5f5;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-ae666-latest-promotions__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--ae666-gold-color);
  background: var(--ae666-primary-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-ae666-latest-promotions__step-title {
  font-size: 1.6em;
  color: var(--ae666-primary-color);
  margin-bottom: 15px;
}

.page-blog-ae666-latest-promotions__guide-section .page-blog-ae666-latest-promotions__step-title {
  color: var(--ae666-primary-color);
}

.page-blog-ae666-latest-promotions__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-blog-ae666-latest-promotions__faq-section {
  background-color: var(--ae666-background);
  color: var(--ae666-text-main);
  padding: 80px 0;
}

.page-blog-ae666-latest-promotions__faq-list {
  margin-top: 50px;
}

.page-blog-ae666-latest-promotions__faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ae666-border-color);
  background: var(--ae666-card-bg);
}

.page-blog-ae666-latest-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: var(--ae666-deep-green-color);
  color: var(--ae666-gold-color);
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.page-blog-ae666-latest-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-ae666-latest-promotions__faq-item summary:hover {
  background: var(--ae666-primary-color);
}

.page-blog-ae666-latest-promotions__faq-qtext {
  flex-grow: 1;
}

.page-blog-ae666-latest-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  line-height: 1;
}

.page-blog-ae666-latest-promotions__faq-answer {
  padding: 20px 30px;
  background: var(--ae666-card-bg);
  color: var(--ae666-text-secondary);
  font-size: 1em;
  border-top: 1px solid var(--ae666-border-color);
}

/* Conclusion Section */
.page-blog-ae666-latest-promotions__conclusion-section {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
  text-align: center;
}

.page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__section-title,
.page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__text-block {
  color: #333333;
}

.page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__btn-primary,
.page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__btn-secondary {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-ae666-latest-promotions__section-title {
    font-size: 2em;
  }

  .page-blog-ae666-latest-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

  .page-blog-ae666-latest-promotions__hero-content {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-ae666-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-ae666-latest-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-ae666-latest-promotions__hero-content {
    max-width: 100%;
  }

  .page-blog-ae666-latest-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-blog-ae666-latest-promotions__subtitle {
    font-size: 1em;
  }

  .page-blog-ae666-latest-promotions__btn-primary,
  .page-blog-ae666-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    margin: 10px 0 !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-ae666-latest-promotions__hero-content .page-blog-ae666-latest-promotions__btn-primary {
    margin-bottom: 10px;
  }

  .page-blog-ae666-latest-promotions__content-area,
  .page-blog-ae666-latest-promotions__promotions-section,
  .page-blog-ae666-latest-promotions__guide-section,
  .page-blog-ae666-latest-promotions__faq-section,
  .page-blog-ae666-latest-promotions__conclusion-section {
    padding: 40px 0;
  }

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

  .page-blog-ae666-latest-promotions__feature-list,
  .page-blog-ae666-latest-promotions__promo-grid,
  .page-blog-ae666-latest-promotions__step-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-ae666-latest-promotions__content-image,
  .page-blog-ae666-latest-promotions__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-ae666-latest-promotions__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-ae666-latest-promotions__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-ae666-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-blog-ae666-latest-promotions__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }

  .page-blog-ae666-latest-promotions__text-block {
    font-size: 0.95em;
  }
}

/* Ensure images within content area are at least 200px and responsive */
.page-blog-ae666-latest-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

.page-blog-ae666-latest-promotions__content-area img,
.page-blog-ae666-latest-promotions__promotions-section img,
.page-blog-ae666-latest-promotions__guide-section img {
  min-width: 200px;
  min-height: 200px;
}

/* Buttons container for responsive wrapping */
.page-blog-ae666-latest-promotions__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__button-group {
    flex-direction: column;
    align-items: center;
  }
  .page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__btn-primary,
  .page-blog-ae666-latest-promotions__conclusion-section .page-blog-ae666-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
  }
}