/* style/blog-latest-promotions-78-good88.css */
.page-blog-latest-promotions-78-good88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the page */
  background-color: var(--bg-page);
}

.page-blog-latest-promotions-78-good88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--bg-page);
}

.page-blog-latest-promotions-78-good88__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px; /* Ensure image fits within typical hero sizes */
  object-fit: cover;
}

.page-blog-latest-promotions-78-good88__hero-content {
  position: relative; /* Ensure content is above image in stacking context if needed, but not overlaying */
  z-index: 2;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-latest-promotions-78-good88__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-latest-promotions-78-good88__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.page-blog-latest-promotions-78-good88__btn-primary,
.page-blog-latest-promotions-78-good88__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-latest-promotions-78-good88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

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

.page-blog-latest-promotions-78-good88__btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-page);
  transform: translateY(-2px);
}

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

.page-blog-latest-promotions-78-good88__content-area,
.page-blog-latest-promotions-78-good88__how-to-claim,
.page-blog-latest-promotions-78-good88__terms-conditions,
.page-blog-latest-promotions-78-good88__faq-section,
.page-blog-latest-promotions-78-good88__cta-final {
  padding: 60px 0;
}

.page-blog-latest-promotions-78-good88__dark-bg {
  background-color: var(--bg-page);
  color: var(--text-main);
}

.page-blog-latest-promotions-78-good88__light-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-latest-promotions-78-good88__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-latest-promotions-78-good88__section-description {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-latest-promotions-78-good88__promotions-grid {
  padding: 60px 0;
}

.page-blog-latest-promotions-78-good88__promotion-card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-78-good88__promotion-card {
  background-color: var(--bg-page);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-latest-promotions-78-good88__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-blog-latest-promotions-78-good88__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-latest-promotions-78-good88__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-latest-promotions-78-good88__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-78-good88__claim-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-78-good88__step-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-latest-promotions-78-good88__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-78-good88__step-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-78-good88__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-latest-promotions-78-good88__terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-latest-promotions-78-good88__term-item {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-blog-latest-promotions-78-good88__term-item::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.page-blog-latest-promotions-78-good88__text-block a {
  color: var(--gold);
  text-decoration: underline;
}

.page-blog-latest-promotions-78-good88__text-block a:hover {
  color: var(--glow);
}

.page-blog-latest-promotions-78-good88__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-latest-promotions-78-good88__faq-item {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.page-blog-latest-promotions-78-good88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-blog-latest-promotions-78-good88__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

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

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

.page-blog-latest-promotions-78-good88__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.page-blog-latest-promotions-78-good88__cta-final {
  text-align: center;
}

/* Custom color variables */
:root {
  --bg-page: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-78-good88__hero-content {
    margin-top: 20px;
  }

  .page-blog-latest-promotions-78-good88__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-latest-promotions-78-good88__promotion-card-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .page-blog-latest-promotions-78-good88__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-latest-promotions-78-good88__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

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

  .page-blog-latest-promotions-78-good88__hero-description {
    font-size: 1rem;
  }

  .page-blog-latest-promotions-78-good88__cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .page-blog-latest-promotions-78-good88__btn-primary,
  .page-blog-latest-promotions-78-good88__btn-secondary {
    width: 100% !important;
    max-width: 300px !important; /* Constrain max-width for buttons */
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  .page-blog-latest-promotions-78-good88__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions-78-good88__content-area,
  .page-blog-latest-promotions-78-good88__how-to-claim,
  .page-blog-latest-promotions-78-good88__terms-conditions,
  .page-blog-latest-promotions-78-good88__faq-section,
  .page-blog-latest-promotions-78-good88__cta-final {
    padding: 40px 0;
  }

  .page-blog-latest-promotions-78-good88__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-blog-latest-promotions-78-good88__section-description,
  .page-blog-latest-promotions-78-good88__text-block,
  .page-blog-latest-promotions-78-good88__card-text,
  .page-blog-latest-promotions-78-good88__step-item p,
  .page-blog-latest-promotions-78-good88__term-item,
  .page-blog-latest-promotions-78-good88__faq-answer {
    font-size: 0.9rem;
  }

  .page-blog-latest-promotions-78-good88__card-title,
  .page-blog-latest-promotions-78-good88__step-title,
  .page-blog-latest-promotions-78-good88__faq-question {
    font-size: 1.1rem;
  }

  /* Image responsiveness for mobile */
  .page-blog-latest-promotions-78-good88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-latest-promotions-78-good88__promotion-card-wrapper {
    grid-template-columns: 1fr;
  }

  .page-blog-latest-promotions-78-good88__promotion-card,
  .page-blog-latest-promotions-78-good88__step-item,
  .page-blog-latest-promotions-78-good88__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-blog-latest-promotions-78-good88__card-content {
    padding: 20px;
  }
}