/* assets/css/style.css */
:root {
    --glass-bg: rgba(24, 24, 27, 0.5);
    --glass-border: rgba(236, 72, 153, 0.2);
}

body {
    -webkit-tap-highlight-color: transparent;
    background-color: #0a0a0a;
    color: #f3f4f6;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.glass-card:active {
    transform: scale(0.98);
    border-color: rgba(236, 72, 153, 0.5);
}

.toast-enter {
    animation: slideInBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.toast-leave {
    animation: fadeOutRight 0.3s ease-in forwards;
}

@keyframes slideInBounce {
    0% { transform: translateX(120%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOutRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
    background: #db2777;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f472b6;
}