/* ============================================
   PROMO.CSS — Promotional banner strip
   ============================================ */

.promo-strip {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    color: white;
    overflow: hidden;
    position: relative;
}

.promo-strip::before {
    content: '⭐';
    position: absolute;
    font-size: 120px;
    right: 200px;
    top: -20px;
    opacity: 0.05;
}

.promo-left h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.promo-left p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.promo-features {
    display: flex;
    gap: 20px;
}

.promo-feat {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.promo-feat .pf-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 4px;
}

.btn-promo {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-promo:hover {
    background: var(--orange-dark);
}

/* ============================================
   RESPONSIVE — Tablet (768px) & Mobile (480px)
   ============================================ */
@media (max-width: 768px) {
    .promo-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 20px;
    }

    .promo-strip::before {
        font-size: 80px;
        right: 10px;
        top: -10px;
    }
}

@media (max-width: 480px) {
    .promo-strip {
        padding: 16px 16px;
    }

    .promo-features {
        display: none;
    }

    .promo-left h3 {
        font-size: 16px;
    }

    .promo-left p {
        font-size: 12px;
    }

    .btn-promo {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
