/* Приветственное сообщение о подписке Premium — правый нижний угол, стилистика сайта */
#premium-promo-toast {
    position: fixed;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: min(360px, calc(100vw - 40px));
    padding: 16px 20px;
    background: rgba(39, 39, 39, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    color: #f1f1f1;
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

#premium-promo-toast.premium-promo-toast-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

#premium-promo-toast .premium-promo-toast-accent {
    color: rgba(126, 206, 0, 0.95);
    font-weight: 600;
}

#premium-promo-toast .premium-promo-toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}

#premium-promo-toast .premium-promo-toast-close:hover {
    color: #f1f1f1;
    background: rgba(255, 255, 255, 0.08);
}

#premium-promo-toast .premium-promo-toast-inner {
    padding-right: 32px;
}

@media (max-width: 480px) {
    #premium-promo-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    #premium-promo-toast .premium-promo-toast-close {
        top: 8px;
        right: 8px;
    }

    #premium-promo-toast .premium-promo-toast-inner {
        padding-right: 28px;
    }
}
