.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-index-latest-promotions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-latest-promotions .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-latest-promotions .btn-primary {
  background-color: #007bff;
  color: #fff;
}

.page-index-latest-promotions .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-index-latest-promotions .btn-secondary {
  background-color: #ffc107;
  color: #333;
}

.page-index-latest-promotions .btn-secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-index-latest-promotions .btn-link {
  background: none;
  color: #007bff;
  padding: 8px 0;
  text-decoration: underline;
}

.page-index-latest-promotions .btn-link:hover {
  color: #0056b3;
}

.page-index-latest-promotions .hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions .hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(45deg);
  animation: hero-bg-animation 15s infinite linear;
}

@keyframes hero-bg-animation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.page-index-latest-promotions .hero-section .container {
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions .hero-btn {
  font-size: 1.1em;
  padding: 15px 35px;
}

.page-index-latest-promotions .hero-image {
  max-width: 500px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .promotions-overview-section, 
.page-index-latest-promotions .how-to-participate-section, 
.page-index-latest-promotions .why-choose-79king-section, 
.page-index-latest-promotions .faq-section {
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-promotions .promotions-overview-section {
  background-color: #f8f9fa;
}

.page-index-latest-promotions .section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: 700;
}

.page-index-latest-promotions .section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-index-latest-promotions .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-latest-promotions .promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-latest-promotions .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions .promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-latest-promotions .promo-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-latest-promotions .promo-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-promotions .promo-card .btn-secondary {
  align-self: flex-start;
}

.page-index-latest-promotions .how-to-participate-section {
  background-color: #fff;
}

.page-index-latest-promotions .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-index-latest-promotions .step-card {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-latest-promotions .step-icon {
  font-size: 2.5em;
  color: #ffc107;
  background-color: #007bff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-latest-promotions .step-text {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-promotions .why-choose-79king-section {
  background-color: #e9f7ff;
}

.page-index-latest-promotions .reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-latest-promotions .reason-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions .reason-item:hover {
  transform: translateY(-5px);
}

.page-index-latest-promotions .reason-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-latest-promotions .reason-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-index-latest-promotions .reason-text {
  color: #666;
}

.page-index-latest-promotions .cta-section {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-promotions .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions .cta-btn {
  font-size: 1.2em;
  padding: 18px 40px;
  background-color: #ffc107;
  color: #333;
}

.page-index-latest-promotions .cta-btn:hover {
  background-color: #e0a800;
}

.page-index-latest-promotions .faq-section {
  background-color: #f8f9fa;
}

.page-index-latest-promotions .faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
}

.page-index-latest-promotions .faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
}

.page-index-latest-promotions .faq-answer {
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-index-latest-promotions .faq-item.active .faq-answer {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions .section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions .cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions .hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions .hero-section {
    padding: 80px 0;
  }
  .page-index-latest-promotions .promotions-overview-section,
  .page-index-latest-promotions .how-to-participate-section,
  .page-index-latest-promotions .why-choose-79king-section,
  .page-index-latest-promotions .faq-section {
    padding: 60px 0;
  }
  .page-index-latest-promotions .promo-grid,
  .page-index-latest-promotions .steps-grid,
  .page-index-latest-promotions .reasons-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions .promo-card,
  .page-index-latest-promotions .step-card,
  .page-index-latest-promotions .reason-item {
    padding: 25px;
  }
  .page-index-latest-promotions .cta-title {
    font-size: 2em;
  }
  .page-index-latest-promotions .cta-description {
    font-size: 1em;
  }
  .page-index-latest-promotions .hero-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions .hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions .hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions .btn-primary, .page-index-latest-promotions .btn-secondary, .page-index-latest-promotions .cta-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-latest-promotions .section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions .promo-title,
  .page-index-latest-promotions .step-title,
  .page-index-latest-promotions .reason-title,
  .page-index-latest-promotions .faq-question {
    font-size: 1.2em;
  }
}