.promotions-page {
  padding: 0;
}

.promotions-banner {
  background: linear-gradient(135deg, #D50036 0%, #FF1744 50%, #FF5252 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promotions-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.promotions-banner::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.banner-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.banner-subtitle {
  font-size: 18px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.promotions-content {
  padding: 40px 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--gray-dark);
  margin-bottom: 24px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary-red);
  display: inline-block;
}

.section-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.activity-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.activity-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.activity-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--primary-red);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.activity-info {
  padding: 20px;
}

.activity-name {
  font-size: 14px;
  font-weight: bold;
  color: var(--gray-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.activity-desc {
  font-size: 12px;
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-date {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.activity-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-btn:hover {
  background: var(--primary-red-dark);
  transform: scale(1.02);
}

.packages-section {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEE 100%);
  padding: 40px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.package-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, #FF1744 100%);
}

.package-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.package-price {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-red);
  margin-bottom: 4px;
}

.package-unit {
  font-size: 14px;
  color: var(--gray-medium);
  margin-bottom: 16px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.package-features li {
  font-size: 13px;
  color: var(--gray-medium);
  padding: 4px 0;
}

.package-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-btn:hover {
  background: var(--primary-red);
  color: white;
}

.rules-section {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.rules-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.rules-list {
  list-style: none;
  padding: 0;
}

.rules-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--gray-medium);
  line-height: 1.6;
}

.rules-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--primary-red);
}

@media (max-width: 1024px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .promotions-banner {
    padding: 40px 0;
  }
  
  .banner-title {
    font-size: 28px;
  }
  
  .banner-subtitle {
    font-size: 16px;
  }
  
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .packages-grid {
    grid-template-columns: repeat(2, 1