/* style/blog-f168m-latest-promotions.css */
.page-blog-f168m-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default text color from custom palette */
  background-color: var(--background-color, #08160F); /* Default background color from custom palette */
}

.page-blog-f168m-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  text-align: center;
  background-color: var(--background-color, #08160F);
  overflow: hidden;
}

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

.page-blog-f168m-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-f168m-latest-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1;
}

.page-blog-f168m-latest-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-main-color, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-f168m-latest-promotions__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-f168m-latest-promotions__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-f168m-latest-promotions__btn-primary,
.page-blog-f168m-latest-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-f168m-latest-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
}

.page-blog-f168m-latest-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-f168m-latest-promotions__btn-secondary {
  background-color: transparent;
  color: var(--gold-color, #F2C14E); /* Gold text for secondary button */
  border: 2px solid var(--gold-color, #F2C14E);
}

.page-blog-f168m-latest-promotions__btn-secondary:hover {
  background-color: var(--gold-color, #F2C14E);
  color: var(--background-color, #08160F); /* Dark background text on hover */
}

.page-blog-f168m-latest-promotions__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-f168m-latest-promotions__light-bg {
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-f168m-latest-promotions__dark-section {
  background-color: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-f168m-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-f168m-latest-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold-color, #F2C14E);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-f168m-latest-promotions__section-description {
  font-size: 1.05rem;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-f168m-latest-promotions__card {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-f168m-latest-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-blog-f168m-latest-promotions__card-title {
  font-size: 1.5rem;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-f168m-latest-promotions__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 20px;
}

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

.page-blog-f168m-latest-promotions__feature-item {
  background-color: var(--deep-green-color, #0A4B2C);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-f168m-latest-promotions__feature-title {
  font-size: 1.4rem;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-f168m-latest-promotions__feature-text {
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-f168m-latest-promotions__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

.page-blog-f168m-latest-promotions__vip-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-blog-f168m-latest-promotions__vip-item {
  background-color: var(--deep-green-color, #0A4B2C);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color, #2E7A4E);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-f168m-latest-promotions__vip-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog-f168m-latest-promotions__vip-title {
  font-size: 1.4rem;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-f168m-latest-promotions__vip-text {
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

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

.page-blog-f168m-latest-promotions__event-card {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-blog-f168m-latest-promotions__event-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-blog-f168m-latest-promotions__event-title {
  font-size: 1.5rem;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-f168m-latest-promotions__event-text {
  font-size: 0.95rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-f168m-latest-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-f168m-latest-promotions__step-item {
  background-color: var(--deep-green-color, #0A4B2C);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color, #2E7A4E);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-f168m-latest-promotions__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
  background: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog-f168m-latest-promotions__step-title {
  font-size: 1.4rem;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-f168m-latest-promotions__step-text {
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-f168m-latest-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-blog-f168m-latest-promotions__faq-item {
  background-color: var(--deep-green-color, #0A4B2C);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-f168m-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main-color, #F2FFF6);
  cursor: pointer;
  background-color: var(--card-bg-color, #11271B);
  border-bottom: 1px solid var(--divider-color, #1E3A2A);
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.page-blog-f168m-latest-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-f168m-latest-promotions__faq-question:hover {
  background-color: var(--deep-green-color, #0A4B2C);
}

.page-blog-f168m-latest-promotions__faq-qtext {
  flex-grow: 1;
  color: var(--gold-color, #F2C14E);
}

.page-blog-f168m-latest-promotions__faq-toggle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-color, #F2C14E);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-blog-f168m-latest-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
  border-top: 1px solid var(--divider-color, #1E3A2A);
}

.page-blog-f168m-latest-promotions__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-f168m-latest-promotions__advantage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-blog-f168m-latest-promotions__advantage-item {
  background-color: var(--deep-green-color, #0A4B2C);
  padding: 20px 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color, #2E7A4E);
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-f168m-latest-promotions__advantage-item strong {
  color: var(--gold-color, #F2C14E);
}

.page-blog-f168m-latest-promotions__cta-section {
  background-color: var(--background-color, #08160F);
  padding: 80px 20px;
  text-align: center;
}

.page-blog-f168m-latest-promotions__cta-content {
  max-width: 800px;
}

.page-blog-f168m-latest-promotions__cta-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--gold-color, #F2C14E);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-f168m-latest-promotions__cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-blog-f168m-latest-promotions__advantage-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-blog-f168m-latest-promotions__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-f168m-latest-promotions__main-title {
    font-size: 2.2rem;
  }

  .page-blog-f168m-latest-promotions__hero-description {
    font-size: 1rem;
  }

  .page-blog-f168m-latest-promotions__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-f168m-latest-promotions__btn-primary,
  .page-blog-f168m-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-f168m-latest-promotions__section {
    padding: 40px 15px;
  }

  .page-blog-f168m-latest-promotions__section-title {
    font-size: 2rem;
  }

  .page-blog-f168m-latest-promotions__section-description {
    font-size: 0.95rem;
  }

  .page-blog-f168m-latest-promotions__card-grid,
  .page-blog-f168m-latest-promotions__feature-list,
  .page-blog-f168m-latest-promotions__vip-benefits,
  .page-blog-f168m-latest-promotions__event-cards,
  .page-blog-f168m-latest-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-f168m-latest-promotions__card-image,
  .page-blog-f168m-latest-promotions__event-image {
    height: 200px;
  }

  .page-blog-f168m-latest-promotions__card-title,
  .page-blog-f168m-latest-promotions__feature-title,
  .page-blog-f168m-latest-promotions__vip-title,
  .page-blog-f168m-latest-promotions__event-title,
  .page-blog-f168m-latest-promotions__step-title {
    font-size: 1.3rem;
  }

  .page-blog-f168m-latest-promotions__card-text,
  .page-blog-f168m-latest-promotions__feature-text,
  .page-blog-f168m-latest-promotions__vip-text,
  .page-blog-f168m-latest-promotions__event-text,
  .page-blog-f168m-latest-promotions__step-text,
  .page-blog-f168m-latest-promotions__faq-question,
  .page-blog-f168m-latest-promotions__faq-answer p,
  .page-blog-f168m-latest-promotions__advantage-item,
  .page-blog-f168m-latest-promotions__cta-description {
    font-size: 0.9rem;
  }

  .page-blog-f168m-latest-promotions__faq-question {
    padding: 15px 20px;
  }

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

  .page-blog-f168m-latest-promotions__cta-section {
    padding: 60px 15px;
  }

  .page-blog-f168m-latest-promotions__cta-title {
    font-size: 2.2rem;
  }
  
  /* Mobile specific image, video, button adaptations */
  .page-blog-f168m-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-f168m-latest-promotions video,
  .page-blog-f168m-latest-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-f168m-latest-promotions__section,
  .page-blog-f168m-latest-promotions__card,
  .page-blog-f168m-latest-promotions__container,
  .page-blog-f168m-latest-promotions__hero-image-wrapper,
  .page-blog-f168m-latest-promotions__video-section,
  .page-blog-f168m-latest-promotions__video-container,
  .page-blog-f168m-latest-promotions__video-wrapper,
  .page-blog-f168m-latest-promotions__cta-buttons,
  .page-blog-f168m-latest-promotions__button-group,
  .page-blog-f168m-latest-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
  
  .page-blog-f168m-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .page-blog-f168m-latest-promotions__video-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }
}

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