/* Promo Spesial - Kemenangan Jaya */
.promo-page {
  background: #f4f6f9;
  font-family: 'Poppins', sans-serif;
}

/* ===== HERO ===== */
.promo-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
  color: #fff;
  background: linear-gradient(125deg, #0f172a 0%, #1e3a5f 38%, #b91c1c 72%, #dc2626 100%);
}

.promo-hero::before,
.promo-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.promo-hero::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
}

.promo-hero::after {
  width: 280px;
  height: 280px;
  bottom: -140px;
  left: -80px;
}

.promo-hero-inner {
  position: relative;
  z-index: 1;
}

.promo-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.promo-hero-tag .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: promo-pulse 1.8s infinite;
}

@keyframes promo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.promo-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
  max-width: 640px;
}

.promo-hero h1 span {
  color: #fde047;
}

.promo-hero-lead {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.92;
  max-width: 520px;
  margin: 0 0 24px;
}

.promo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-btn-primary {
  background: #fff;
  color: #b91c1c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.promo-btn-primary:hover {
  color: #991b1b;
  transform: translateY(-2px);
}

.promo-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.promo-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.promo-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promo-stat-chip {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 100px;
}

.promo-stat-chip strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.promo-stat-chip span {
  font-size: 11px;
  opacity: 0.85;
}

.promo-timer-wrap {
  margin-top: 8px;
}

.promo-timer-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 8px;
  display: block;
}

.promo-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-box {
  min-width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.timer-sep {
  font-size: 20px;
  font-weight: 800;
  opacity: 0.7;
}

/* ===== TRUST BAR ===== */
.promo-trust {
  background: #fff;
  border-bottom: 1px solid #e8ecf1;
  padding: 16px 0;
  margin-bottom: 28px;
}

.promo-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.promo-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
}

.promo-trust-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fef2f2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.promo-trust-item strong {
  display: block;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 2px;
}

/* ===== NAV PILLS ===== */
.promo-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.promo-nav a {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.promo-nav a:hover,
.promo-nav a.active {
  background: #fef2f2;
  color: #dc2626;
}

/* ===== SECTION ===== */
.promo-section {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.promo-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.promo-section-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-section-head p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.promo-badge-live {
  font-size: 10px;
  font-weight: 800;
  background: #dc2626;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  animation: promo-badge-blink 2s ease-in-out infinite;
}

@keyframes promo-badge-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.promo-link-more {
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
  text-decoration: none;
  white-space: nowrap;
}

.promo-link-more:hover {
  text-decoration: underline;
}

/* ===== FLASH SLIDER ===== */
.promo-slider-wrap {
  position: relative;
}

.promo-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 4px 20px;
}

.promo-slider::-webkit-scrollbar {
  display: none;
}

.promo-slider .promo-card-wrap {
  flex: 0 0 170px;
  width: 170px;
}

.promo-slider .m10-card-v2 {
  flex: unset !important;
  width: 100% !important;
  min-height: 268px;
}

.promo-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.promo-slider-nav:hover {
  background: #dc2626;
  color: #fff;
}

.promo-slider-nav.prev { left: -12px; }
.promo-slider-nav.next { right: -12px; }

/* ===== VOUCHER ===== */
.promo-voucher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.promo-voucher-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  border: 1px solid #e8ecf1;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-voucher-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.promo-voucher-side {
  width: 88px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #dc2626, #ea580c);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  position: relative;
}

.promo-voucher-side::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
}

.promo-voucher-side i {
  font-size: 26px;
  margin-bottom: 6px;
  opacity: 0.95;
}

.promo-voucher-side .type {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.promo-voucher-body {
  flex: 1;
  padding: 16px 18px;
  border-left: 2px dashed #f1f5f9;
}

.promo-voucher-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

.promo-voucher-value {
  font-size: 22px;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 6px;
}

.promo-voucher-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 10px;
}

.promo-voucher-meta {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.promo-voucher-code {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  border: 1.5px dashed #fca5a5;
  border-radius: 10px;
  padding: 8px 12px;
}

.promo-voucher-code code {
  flex: 1;
  font-size: 14px;
  font-weight: 800;
  color: #b91c1c;
  letter-spacing: 1.5px;
}

.promo-btn-copy {
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.promo-btn-copy:hover {
  background: #b91c1c;
}

.promo-btn-copy.copied {
  background: #16a34a;
}

/* ===== DISKON GRID ===== */
.promo-diskon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 14px;
}

.promo-diskon-grid .m10-card-v2 {
  flex: unset !important;
  width: 100% !important;
}

/* ===== HOW IT WORKS ===== */
.promo-steps {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecf1;
  padding: 28px 24px;
  margin-bottom: 40px;
}

.promo-steps h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  text-align: center;
}

.promo-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-step {
  text-align: center;
  padding: 0 12px;
}

.promo-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fef2f2;
  color: #dc2626;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.promo-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.promo-step p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ===== CTA BAND ===== */
.promo-cta-band {
  background: linear-gradient(135deg, #0f172a, #1e40af);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  color: #fff;
  margin-bottom: 48px;
}

.promo-cta-band h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
}

.promo-cta-band p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0 0 20px;
}

/* ===== EMPTY ===== */
.promo-empty {
  text-align: center;
  padding: 64px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed #e2e8f0;
}

.promo-empty i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.promo-empty h3 {
  font-size: 18px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.promo-empty p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .promo-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promo-slider-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .promo-hero {
    padding: 36px 0 32px;
  }

  .promo-trust-grid {
    grid-template-columns: 1fr;
  }

  .promo-nav a {
    min-width: calc(50% - 4px);
    flex: unset;
  }

  .promo-voucher-grid {
    grid-template-columns: 1fr;
  }

  .promo-diskon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .promo-slider .promo-card-wrap {
    flex: 0 0 150px;
    width: 150px;
  }
}
