﻿/* service-web-downloader.css - Extracted from inline styles */
* { font-family: 'Noto Sans SC', sans-serif; }
    html { scroll-behavior: smooth; }
    @keyframes progress-fill {
      0% { width: 0%; }
      100% { width: 78%; }
    }
    @keyframes file-drop {
      0% { transform: translateY(-20px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }
    .progress-animated { animation: progress-fill 3s ease-out forwards; }
    .file-item { animation: file-drop 0.4s ease-out forwards; opacity: 0; }
    .file-item:nth-child(1) { animation-delay: 0.2s; }
    .file-item:nth-child(2) { animation-delay: 0.4s; }
    .file-item:nth-child(3) { animation-delay: 0.6s; }
    .file-item:nth-child(4) { animation-delay: 0.8s; }
