/**
 * VIP Promo Badge — Modern promotional badge for non-VIP users
 */

.rw-vip-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rw-vip-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.rw-vip-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 52, 96, 0.4);
}

.rw-vip-promo__content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.rw-vip-promo__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
}

.rw-vip-promo__icon img {
    filter: brightness(0) invert(1);
}

.rw-vip-promo__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rw-vip-promo__label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.rw-vip-promo__vip-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #000;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
}

.rw-vip-promo__sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: 1.3;
}

.rw-vip-promo__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.rw-vip-promo__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
    filter: brightness(1.05);
    color: #000;
    text-decoration: none;
}

.rw-vip-promo__btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
    .rw-vip-promo {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
    }

    .rw-vip-promo__btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .rw-vip-promo__icon {
        width: 34px;
        height: 34px;
    }

    .rw-vip-promo__icon svg {
        width: 18px;
        height: 18px;
    }

    .rw-vip-promo__label {
        font-size: 13px;
    }

    .rw-vip-promo__sub {
        font-size: 11px;
    }
}
