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

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

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

.page-index-latest-promotions .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,gold,red_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-latest-promotions .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-index-latest-promotions .hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #eee;
}

.page-index-latest-promotions .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions .btn-primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .btn-secondary {
  background-color: #8B0000;
  color: #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .btn-secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .btn-outline {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-index-latest-promotions .btn-outline:hover {
  background-color: #8B0000;
  color: #FFD700;
}

.page-index-latest-promotions .btn.large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index-latest-promotions .section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-latest-promotions .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-latest-promotions .why-choose-us-section, 
.page-index-latest-promotions .promotions-list-section, 
.page-index-latest-promotions .guide-section, 
.page-index-latest-promotions .about-iwin-club-section, 
.page-index-latest-promotions .faq-section, 
.page-index-latest-promotions .call-to-action-section {
  padding: 80px 0;
}

.page-index-latest-promotions .why-choose-us-section {
  background-color: #fff;
}

.page-index-latest-promotions .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

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

.page-index-latest-promotions .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-index-latest-promotions .feature-item h3 {
  color: #8B0000;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index-latest-promotions .promotion-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions .promotion-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-latest-promotions .promotion-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  min-height: 250px;
}

.page-index-latest-promotions .promotion-content {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-index-latest-promotions .promotion-content h3 {
  color: #8B0000;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-index-latest-promotions .promotion-content p {
  margin-bottom: 20px;
  color: #555;
}

.page-index-latest-promotions .guide-section {
  background-color: #f0f0f0;
}

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

.page-index-latest-promotions .step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-index-latest-promotions .step-item h3 {
  color: #8B0000;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index-latest-promotions .about-iwin-club-section {
  background-color: #fff;
  text-align: center;
}

.page-index-latest-promotions .about-iwin-club-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #555;
}

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

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

.page-index-latest-promotions .faq-item h3 {
  color: #8B0000;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-index-latest-promotions .faq-item p {
  color: #666;
  font-size: 1em;
  display: none;
}

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

.page-index-latest-promotions .call-to-action-section {
  text-align: center;
  background: linear-gradient(90deg, #8B0000 0%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
}

.page-index-latest-promotions .call-to-action-section .section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-index-latest-promotions .call-to-action-section .section-title::after {
  background-color: #fff;
}

.page-index-latest-promotions .call-to-action-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #eee;
}

/* Responsive Design */
@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 .promotion-card {
    flex-direction: column;
  }

  .page-index-latest-promotions .promotion-card:nth-child(even) {
    flex-direction: column;
  }

  .page-index-latest-promotions .promotion-image,
  .page-index-latest-promotions .promotion-content {
    width: 100%;
  }

  .page-index-latest-promotions .promotion-image {
    height: 200px;
  }

  .page-index-latest-promotions .promotion-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.2em;
  }

  .page-index-latest-promotions .hero-description {
    font-size: 1em;
  }

  .page-index-latest-promotions .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-index-latest-promotions .section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }

  .page-index-latest-promotions .feature-item, 
  .page-index-latest-promotions .step-item {
    padding: 20px;
  }

  .page-index-latest-promotions .feature-icon, 
  .page-index-latest-promotions .step-icon {
    width: 60px;
    height: 60px;
  }

  .page-index-latest-promotions .promotion-content h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions .hero-section,
  .page-index-latest-promotions .why-choose-us-section, 
  .page-index-latest-promotions .promotions-list-section, 
  .page-index-latest-promotions .guide-section, 
  .page-index-latest-promotions .about-iwin-club-section, 
  .page-index-latest-promotions .faq-section, 
  .page-index-latest-promotions .call-to-action-section {
    padding: 40px 0;
  }

  .page-index-latest-promotions .hero-title {
    font-size: 1.8em;
  }

  .page-index-latest-promotions .section-title {
    font-size: 1.5em;
  }

  .page-index-latest-promotions .btn {
    width: 100%;
    margin-top: 15px;
  }

  .page-index-latest-promotions .promotion-image {
    height: 150px;
  }
}