.promotions-section {
  position: relative;
  padding: 100px 20px;
  background-color: #050508;
  overflow: hidden;
}

.background-glow {
  position: absolute;
  inset: 0;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255,215,0,0.05);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease forwards;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,23,68,0.1);
  border: 1px solid rgba(255,23,68,0.3);
  border-radius: 999px;
  color: #FF1744;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 10px;
  color: white;
}

.section-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
}

/* Promotions Grid */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

/* Card */
.promo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.05), rgba(255,255,255,0));
}

.promo-card:hover {
  transform: translateY(-8px);
}

/* Background Gradients */
.gold-gradient { background: linear-gradient(to bottom right, #FFD700, #FFA500); }
.red-gradient { background: linear-gradient(to bottom right, #3b990f, #075e13); }
.purple-gradient { background: linear-gradient(to bottom right, #9C27B0, #7B1FA2); }
.blue-gradient { background: linear-gradient(to bottom right, #00BCD4, #0097A7); }

.card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.promo-card:hover .card-bg {
  opacity: 0.2;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.05), transparent);
}

.highlight-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #FFD700;
  color: black;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.8; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}

/* Content */
.promo-content {
  position: relative;
  padding: 24px;
  z-index: 1;
  color: white;
}

.promo-content .icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 16px;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.promo-card:hover .promo-content .icon {
  transform: scale(1.1);
}

.promo-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-content p {
  font-size: 0.938rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.promo-content .bonus {
  display: inline-block;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 12px;
  margin-bottom: 16px;
  background: linear-gradient(to right, #FFD700, #FFA500);
}

.promo-content .cta-button {
  width: 100%;
  padding: 12px 0;
  font-weight: 600;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-content .cta-button:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
