/* Custom Styles for Baykus */

/* --------------------------------- */
/* 404 Go Back Button                */
/* --------------------------------- */
.btn-go-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 9999px;
    padding: 6px 16px 6px 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-go-back:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.03);
    transform: translateY(-1px);
}

.btn-go-back .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.btn-go-back .icon-wrapper svg {
    width: 14px;
    height: 14px;
    color: #111111;
    stroke-width: 2.5;
}

.btn-go-back .text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    line-height: 1;
    letter-spacing: -0.01em;
}

/* --------------------------------- */
/* Pulse Ring Animation              */
/* --------------------------------- */
@keyframes breatheRing {
    0%, 100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }
}
.animate-breathe-ring {
    animation: breatheRing 2.5s ease-in-out infinite;
}
