
/* =====================================================
   GLOBAL PROMO PAGE STYLES
===================================================== */
:root {
  --red:#e63946;
  --dark:#1c1c1c;
  --green:#2ecc71;
  --light:#f9fafb;
}

section { position: relative; overflow: hidden; }

.section-space { padding: 5rem 0; }

.gradient-bg {
  background: linear-gradient(135deg,#1c1c1c,#2b2b2b,#e63946);
}

.soft-bg {
  background: linear-gradient(to right,
    rgba(230,57,70,.08),
    rgba(46,204,113,.08));
}

.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  transition: .35s ease;
}

.glass:hover {
  transform: translateY(-8px);
}

.big-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green);
}

.badge-soft {
  background: rgba(255,255,255,.2);
  padding: .6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
}

.btn-main {
  background: linear-gradient(90deg,var(--red),var(--green));
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 40px;
  border: none;
}

.btn-main:hover { opacity: .9; }

/* Timeline */
.timeline-step {
  border-left: 4px solid var(--red);
  padding-left: 1.5rem;
  margin-bottom: 2.2rem;
}

/* Mobile */
@media(max-width:768px){
  .big-number { font-size: 2.2rem; }
}
    
    /* =====================================================
   LIGHT HERO STYLES
===================================================== */

.promo-hero-light {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f9fafb 50%,
    #fff1f2 100%
  );
  overflow: hidden;
}

.hero-pill {
  display: inline-block;
  background: rgba(230,57,70,.1);
  color: #e63946;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 30px;
  font-size: .9rem;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.15;
  color: #1c1c1c;
}

.hero-sub {
  font-size: 1.1rem;
  color: #555;
  max-width: 520px;
}

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  min-width: 160px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.stat-card h3 {
  color: #2ecc71;
  font-weight: 800;
  margin: 0;
}

.stat-card p {
  margin: 0;
  color: #555;
  font-size: .9rem;
}

/* Illustration */
.hero-illustration img {
  max-width: 95%;
  border-radius:20px;
}

/* Doodles */
.doodle-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.doodle {
  position: absolute;
  opacity: .15;
  animation: float 8s ease-in-out infinite;
}

.doodle-1 { top: 8%; left: 5%; width: 70px; }
.doodle-2 { top: 30%; right: 10%; width: 90px; animation-delay: 2s; }
.doodle-3 { bottom: 15%; left: 12%; width: 80px; animation-delay: 4s; }
.doodle-4 { bottom: 25%; right: 20%; width: 60px; animation-delay: 6s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Mobile */
@media(max-width:768px){
  .hero-title { font-size: 2.4rem; }
  .hero-stats { justify-content: center; }
  .hero-illustration { text-align: center; margin-top: 3rem; }
}




/* MAIN PROMO CONTAINER */
.current-promo {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* LEFT IMAGE BOX */
.current-promo-left-img {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

/* RIGHT CONTENT */
.current-promo-right-content {
    flex: 1;
    padding: 20px 10px;
}

/* FLASHY PROMOTION BADGE */
.promo-badge {
    background: rgba(255, 0, 0, 0.15);
    color: #DC3545;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    border: 1px solid #DC3545;
    animation: flashPulse 1.4s infinite alternate;
}

@keyframes flashPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* NEW TABLE STYLE */
.promo-table {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.promo-table th,
.promo-table td {
    padding: 14px 16px;
    color: #fff;
}

.promo-table th {
    background: rgba(255,255,255,0.12);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: yellow;
}

.promo-table tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
}

.promo-table td .earn {
    color: #00c46c;
    font-weight: bold;
}

/* RESPONSIVE TABLE */
@media (max-width: 768px) {
    .promo-table thead {
        display: none;
    }

    .promo-table tr {
        display: block;
        margin-bottom: 15px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 10px;
        background: rgba(0,0,0,0.15);
    }

    .promo-table td {
        display: flex;
        justify-content: space-between;
        padding: 10px 5px;
        font-size: 15px;
    }

    .promo-table td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #ddd;
    }
}

/* MOBILE RESPONSIVE FOR LEFT/RIGHT */
@media (max-width: 768px) {
    .current-promo {
        flex-direction: column;
    }

    .current-promo-left-img {
        width: 100%;
        min-height: 250px;
    }

    .current-promo-right-content {
        padding-top: 20px;
    }
}
