/* SIDERAL CUSTOM STYLES */
body {
    font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-scroll {
    max-height: 60vh;
    overflow-y: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Modal animations */
.animate-in {
    animation-duration: 300ms;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

.zoom-in {
    animation-name: zoomIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* MODO PRIVACIDAD (GHOST MODE) - BLINDAJE IPHONE */
.privacy-amount {
    transition: filter 0.3s ease, opacity 0.3s ease, -webkit-filter 0.3s ease;
    display: inline-block;
    will-change: filter, -webkit-filter;
}

body.privacy-enabled .privacy-amount {
    -webkit-filter: blur(8px);
    filter: blur(8px);
    opacity: 0.7;
    pointer-events: none;
    user-select: none;
    transform: translateZ(0);
    /* Forzar aceleración GPU en iPhone */
}

/* Mejora de click en iPhone */
button,
a,
.quarter-btn {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}