/* style/blog-explore-ok789-official-homepage-latest-promotions.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #0056b3; /* Darker shade for hover */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light: #ffffff;
  --login-color: #EA7C07;
}

.page-blog-explore-ok789-official-homepage-latest-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark #0a0a0a, so text is light */
  background-color: var(--bg-dark);
  padding-top: 10px; /* Small decorative padding, shared body handles main offset */
}

.page-blog-explore-ok789-official-homepage-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
  overflow: hidden;
  border-radius: 0 0 15px 15px;
  margin-bottom: 40px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--login-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__cta-button:hover {
  background-color: #c76706;
  transform: translateY(-2px);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-blog-explore-ok789-official-homepage-latest-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-align: justify;
  color: var(--text-light);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__content-section,
.page-blog-explore-ok789-official-homepage-latest-promotions__activities-section,
.page-blog-explore-ok789-official-homepage-latest-promotions__why-choose-section,
.page-blog-explore-ok789-official-homepage-latest-promotions__how-to-participate-section,
.page-blog-explore-ok789-official-homepage-latest-promotions__conclusion-section {
  padding: 60px 0;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__content-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__activities-section,
.page-blog-explore-ok789-official-homepage-latest-promotions__how-to-participate-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__promotion-grid,
.page-blog-explore-ok789-official-homepage-latest-promotions__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__promotion-card,
.page-blog-explore-ok789-official-homepage-latest-promotions__advantage-card {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  padding-bottom: 25px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__promotion-card:hover,
.page-blog-explore-ok789-official-homepage-latest-promotions__advantage-card:hover {
  transform: translateY(-5px);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__promotion-image,
.page-blog-explore-ok789-official-homepage-latest-promotions__advantage-image,
.page-blog-explore-ok789-official-homepage-latest-promotions__activity-image {
  width: 100%;
  height: 220px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 20px 15px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__promotion-card p,
.page-blog-explore-ok789-official-homepage-latest-promotions__advantage-card p {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 20px 20px;
  text-align: justify;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 20px;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__btn-secondary:hover {
  background-color: var(--secondary-color);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__activity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__activity-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  padding-bottom: 25px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__activity-item:hover {
  transform: translateY(-5px);
}

.page-blog-explore-ok789-official-homepage-latest-promotions__item-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 20px 15px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__activity-item p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 20px 20px;
  text-align: justify;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__steps-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__step-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__steps-list li p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-blog-explore-ok789-official-homepage-latest-promotions__post-meta {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 50px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-explore-ok789-official-homepage-latest-promotions {
    font-size: 15px;
    line-height: 1.5;
    padding-top: 10px !important;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__hero-section {
    padding: 60px 15px;
    margin-bottom: 30px;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__main-title {
    font-size: 2rem;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__hero-description {
    font-size: 1rem;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__text-block {
    font-size: 1rem;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__content-section,
  .page-blog-explore-ok789-official-homepage-latest-promotions__activities-section,
  .page-blog-explore-ok789-official-homepage-latest-promotions__why-choose-section,
  .page-blog-explore-ok789-official-homepage-latest-promotions__how-to-participate-section,
  .page-blog-explore-ok789-official-homepage-latest-promotions__conclusion-section {
    padding: 40px 0;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__promotion-grid,
  .page-blog-explore-ok789-official-homepage-latest-promotions__advantages-grid,
  .page-blog-explore-ok789-official-homepage-latest-promotions__activity-list,
  .page-blog-explore-ok789-official-homepage-latest-promotions__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__promotion-card,
  .page-blog-explore-ok789-official-homepage-latest-promotions__advantage-card,
  .page-blog-explore-ok789-official-homepage-latest-promotions__activity-item,
  .page-blog-explore-ok789-official-homepage-latest-promotions__steps-list li {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__promotion-image,
  .page-blog-explore-ok789-official-homepage-latest-promotions__advantage-image,
  .page-blog-explore-ok789-official-homepage-latest-promotions__activity-image {
    height: 180px;
    margin-bottom: 15px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Ensure responsiveness */
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__card-title,
  .page-blog-explore-ok789-official-homepage-latest-promotions__item-title {
    font-size: 1.3rem;
    margin: 0 0 10px;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__promotion-card p,
  .page-blog-explore-ok789-official-homepage-latest-promotions__advantage-card p,
  .page-blog-explore-ok789-official-homepage-latest-promotions__activity-item p,
  .page-blog-explore-ok789-official-homepage-latest-promotions__steps-list li p {
    font-size: 0.95rem;
    margin: 0 0 15px;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__btn-secondary {
    margin: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 20px;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__step-title {
    font-size: 1.4rem;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-explore-ok789-official-homepage-latest-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
}