/* =============================================
   AI Image to HTML Converter - Custom Styles
   ============================================= */

/* File drop zone */
.file-drop-zone {
    transition: all 0.3s;
}
.file-drop-zone.drag-over {
    border-color: #60a5fa;
    background: rgba(59, 130, 246, 0.08);
    transform: scale(1.02);
}

/* Glow button */
.glow-blue {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.glow-blue:hover {
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.8);
    transform: translateY(-2px);
}

/* Loading pulse animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.9);
    }
}
.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Code block custom scrollbar */
pre::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
pre::-webkit-scrollbar-track {
    background: #1e293b;
}
pre::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}

/* SEO section heading scroll margin */
.seo-section h2 {
    scroll-margin-top: 80px;
}