@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
}
/* Free badge */
.bg-green-500 {
    background-color: #10b981;
}

/* Animation classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}
/* Responsive tweaks */
@media (max-width: 640px) {
    .hero-buttons {
        grid-template-columns: 1fr;
    }
}

/* Tool Modal Styles */
#tool-modal {
    backdrop-filter: blur(5px);
}

#tool-modal h3 {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #8b5cf6, #ec4899);
}

/* Progress animation */
@keyframes progress {
    0% { width: 0; }
    100% { width: 100%; }
}

.animate-progress {
    animation: progress 3s ease-out forwards;
}

/* Tool buttons */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* File upload preview */
.upload-preview {
    max-height: 200px;
    object-fit: contain;
    margin-top: 1rem;
    border-radius: 0.5rem;
    display: none;
}

/* Warning text for sensitive content */
.warning-text {
    color: #f87171;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
