.angie-floating-btn-2dea9766 {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #111111;
    color: #FFD600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #FFD600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 0, 0.3);
    transition: all 0.3s ease;
    animation: angie-pulse-2dea9766 2s infinite;
    line-height: 1;
    letter-spacing: 0.3px;
}

.angie-floating-btn-2dea9766:hover {
    background: #FFD600;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 214, 0, 0.5);
    animation: none;
    text-decoration: none;
    border-color: #FFD600;
}

.angie-floating-btn-2dea9766:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.angie-floating-btn-2dea9766:focus {
    outline: 2px solid #FFD600;
    outline-offset: 3px;
}

.angie-floating-btn-icon-2dea9766 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.angie-floating-btn-text-2dea9766 {
    white-space: nowrap;
}

@keyframes angie-pulse-2dea9766 {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 0, 0.3), 0 0 0 10px rgba(255, 214, 0, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 214, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .angie-floating-btn-2dea9766 {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 13px;
        gap: 8px;
    }
}