/* Success Notification Bubble */
.success-bubble-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(84, 110, 122, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-bubble-overlay.active {
    opacity: 1;
}

.success-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid white;
    border-radius: 30px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(84, 110, 122, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.success-bubble-overlay.active .success-bubble {
    transform: scale(1) translateY(0);
}

.success-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.success-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-heading);
    transform: rotate(90deg);
}

.success-icon-large {
    font-size: 3.5rem;
    color: var(--accent-warm);
    margin-bottom: 20px;
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(212, 140, 158, 0));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(212, 140, 158, 0.4));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(212, 140, 158, 0));
    }
}

.success-title {
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 10px;
    font-family: 'Golos Bold', serif;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.bubble-social-actions {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 2px dashed rgba(84, 110, 122, 0.1);
}

.bubble-social-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bubble-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.bubble-social-icon {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.bubble-social-icon.telegram:hover {
    background: #0088cc;
    color: white;
    transform: translateY(-5px) scale(1.1);
}

.bubble-social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    transform: translateY(-5px) scale(1.1);
}

.bubble-social-icon.tiktok:hover {
    background: #000;
    color: white;
    transform: translateY(-5px) scale(1.1);
}

.bubble-social-icon.vk:hover {
    background: #0077FF;
    color: white;
    transform: translateY(-5px) scale(1.1);
}