/* app/static/css/style.css */
@import url('https://fonts.cdnfonts.com/css/pricedown');

.gta-font { 
    font-family: 'Pricedown', sans-serif; 
    letter-spacing: 2px; 
}

/* Переменные темы */
:root {
    --gta-orange: #ff9d00;
    --gta-green: #4de132;
}

.dark { 
    --bg: #0a0a0a; 
    --card: #161616; 
}

/* Маска персонажа */
.character-fade-mask {
    -webkit-mask-image: linear-gradient(to bottom, black 15%, transparent 98%);
    mask-image: linear-gradient(to bottom, black 15%, transparent 95%);
}

/* Эффекты 404 */
.bg-radial-vignette {
    background: radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(0,0,0,0.9) 100%);
}

/* Анимации */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
@keyframes bounce-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes wasted-zoom { from { transform: scale(1.1); } to { transform: scale(1.25); } }
@keyframes wasted-text { 0% { transform: scale(1.5); opacity: 0; filter: blur(15px); } 100% { transform: scale(1); opacity: 1; filter: blur(0); } }
@keyframes wasted-line { 0% { width: 0; left: 50%; opacity: 0; } 100% { width: 100%; left: 0; opacity: 1; } }
@keyframes fade-in-up { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 6s ease-in-out infinite; animation-delay: 2s; }
.animate-bounce-slow { animation: bounce-slow 4s ease-in-out infinite; }
.animate-wasted-zoom { animation: wasted-zoom 15s linear infinite alternate; }
.animate-wasted-text { animation: wasted-text 0.8s cubic-bezier(0.21, 0.6, 0.35, 1) forwards; }
.animate-wasted-line { animation: wasted-line 1.2s ease-out forwards; animation-delay: 0.5s; }
.animate-fade-in-up { animation: fade-in-up 1s ease-out forwards; animation-delay: 0.2s; opacity: 0; }

[x-cloak] { display: none !important; }


/* Кнопка одобрения (Зеленый градиент) */
.btn-approve {
    background: linear-gradient(90deg, #4de132, #2ecc71, #4de132);
    background-size: 200% 100%;
    transition: background-position 0.5s ease, color 0.3s ease;
    color: #000;
}
.btn-approve:hover {
    background-position: 100% 0;
}

/* Кнопка отказа (Красный градиент) */
.btn-reject {
    background: linear-gradient(90deg, #ef4444, #b91c1c, #ef4444);
    background-size: 200% 100%;
    transition: background-position 0.5s ease;
    color: #fff;
}
.btn-reject:hover {
    background-position: 100% 0;
}

@keyframes toast-progress {
    from { width: 100%; }
    to { width: 0%; }
}
.animate-toast-progress {
    animation: toast-progress 5s linear forwards;
}