/* style/blog-vip52-official-latest-promotions-analysis.css */

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

/* Base styles for the page content */
.page-blog-vip52-official-latest-promotions-analysis {
  color: var(--color-text-main); /* Default text color for the page */
  background-color: var(--color-background); /* Default background for the page */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

.page-blog-vip52-official-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: var(--color-background); /* Ensure consistency for content area */
  color: var(--color-text-main);
}

/* Headings */
.page-blog-vip52-official-latest-promotions-analysis h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-vip52-official-latest-promotions-analysis h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-vip52-official-latest-promotions-analysis h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-text-main);
  margin-bottom: 25px;
  font-weight: bold;
  text-align: center;
}

.page-blog-vip52-official-latest-promotions-analysis h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--color-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

/* Paragraphs and Lists */
.page-blog-vip52-official-latest-promotions-analysis p,
.page-blog-vip52-official-latest-promotions-analysis li {
  color: var(--color-text-main);
  margin-bottom: 15px;
}

.page-blog-vip52-official-latest-promotions-analysis__advantages-list,
.page-blog-vip52-official-latest-promotions-analysis__terms-list,
.page-blog-vip52-official-latest-promotions-analysis__steps-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--color-text-main);
}

.page-blog-vip52-official-latest-promotions-analysis__steps-list {
  list-style-type: decimal;
}

.page-blog-vip52-official-latest-promotions-analysis__steps-list strong {
  color: var(--color-gold);
}

/* Hero Section */
.page-blog-vip52-official-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-vip52-official-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
  z-index: 1;
}

.page-blog-vip52-official-latest-promotions-analysis__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  margin-top: 20px;
}

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

/* Buttons */
.page-blog-vip52-official-latest-promotions-analysis__cta-button,
.page-blog-vip52-official-latest-promotions-analysis__btn-primary,
.page-blog-vip52-official-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words break */
}

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

.page-blog-vip52-official-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-blog-vip52-official-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-background);
}

.page-blog-vip52-official-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Card Grid */
.page-blog-vip52-official-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-vip52-official-latest-promotions-analysis__card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-vip52-official-latest-promotions-analysis__card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-gold);
  text-align: left;
}

.page-blog-vip52-official-latest-promotions-analysis__card p {
  color: var(--color-text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-vip52-official-latest-promotions-analysis__card-link {
  display: inline-block;
  margin-top: auto; /* Push link to bottom */
}

/* Images */
.page-blog-vip52-official-latest-promotions-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Call to Action Section (Dark Background) */
.page-blog-vip52-official-latest-promotions-analysis__cta-section {
  background-color: var(--color-deep-green);
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
  color: #ffffff;
}

.page-blog-vip52-official-latest-promotions-analysis__cta-section h2,
.page-blog-vip52-official-latest-promotions-analysis__cta-section h3 {
  color: var(--color-gold);
}

.page-blog-vip52-official-latest-promotions-analysis__cta-section p {
  color: var(--color-text-main);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* FAQ Section */
.page-blog-vip52-official-latest-promotions-analysis__faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

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

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

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

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

.page-blog-vip52-official-latest-promotions-analysis__faq-question::marker {
  display: none;
}

.page-blog-vip52-official-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--color-gold);
}

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

.page-blog-vip52-official-latest-promotions-analysis__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: var(--color-text-secondary);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-vip52-official-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }

  .page-blog-vip52-official-latest-promotions-analysis__card-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-vip52-official-latest-promotions-analysis h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-vip52-official-latest-promotions-analysis h2 {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-blog-vip52-official-latest-promotions-analysis h3 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .page-blog-vip52-official-latest-promotions-analysis__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-vip52-official-latest-promotions-analysis__hero-content {
    padding: 15px;
  }

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

  .page-blog-vip52-official-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-vip52-official-latest-promotions-analysis__cta-button,
  .page-blog-vip52-official-latest-promotions-analysis__btn-primary,
  .page-blog-vip52-official-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }

  .page-blog-vip52-official-latest-promotions-analysis__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-vip52-official-latest-promotions-analysis__card {
    padding: 25px;
  }

  .page-blog-vip52-official-latest-promotions-analysis__image {
    margin: 20px auto;
  }

  .page-blog-vip52-official-latest-promotions-analysis__overview-section,
  .page-blog-vip52-official-latest-promotions-analysis__bonus-types-section,
  .page-blog-vip52-official-latest-promotions-analysis__claim-section,
  .page-blog-vip52-official-latest-promotions-analysis__terms-section,
  .page-blog-vip52-official-latest-promotions-analysis__why-choose-section,
  .page-blog-vip52-official-latest-promotions-analysis__cta-section,
  .page-blog-vip52-official-latest-promotions-analysis__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image responsiveness */
  .page-blog-vip52-official-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-vip52-official-latest-promotions-analysis__section,
  .page-blog-vip52-official-latest-promotions-analysis__card,
  .page-blog-vip52-official-latest-promotions-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-blog-vip52-official-latest-promotions-analysis h1 {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .page-blog-vip52-official-latest-promotions-analysis h2 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .page-blog-vip52-official-latest-promotions-analysis h3 {
    font-size: clamp(1.3rem, 7vw, 1.6rem);
  }

  .page-blog-vip52-official-latest-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-vip52-official-latest-promotions-analysis__faq-answer {
    padding: 10px 20px;
  }
}