/* ========================
   ClipMaker - style.css
   ======================== */

:root {
    --bg: #030712;
    --accent: #7c3aed;
    --accent-hover: #6d28d9;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg);
    color: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Syne', sans-serif;
}

/* Glassmorphism */
.glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brilho no player de vídeo */
.video-glow {
    box-shadow: 0 0 80px -20px rgba(124, 58, 237, 0.2);
}

/* Animação shimmer no placeholder */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Botão de upload */
.upload-btn {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.upload-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px -8px rgba(124, 58, 237, 0.5);
}
