        /* Unified Box Styles */
        .unified-box {
            border: 3px dashed #d1d9e6;
            border-radius: 12px;
            background: white;
            transition: border-color 0.3s, background-color 0.3s;
            margin: 2rem auto;
            max-width: 900px;
            padding: 0 1rem;
        }
        
        .unified-box.dragover {
            border-color: #4a7bff;
            background-color: #f0f5ff;
        }
        
        .unified-content {
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .unified-icon {
            font-size: 48px;
            margin-bottom: 15px;
            color: #6c757d;
        }
        
        .unified-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #212529;
        }
        
        .unified-subtitle {
            color: #6c757d;
            margin-bottom: 25px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .unified-helper {
            font-size: 13px;
            color: #718096;
            margin-top: 8px;
        }
        
        .preview-grid-container {
            padding: 1.5rem;
            display: none;
        }
        
        .compatibility-note {
            background: #f0f9ff;
            border: 1px solid #7dd3fc;
            border-radius: 6px;
            padding: 12px;
            margin-top: 15px;
            font-size: 14px;
            color: #0369a1;
        }
        
        @media (max-width: 768px) {
            .unified-content {
                padding: 2rem 1rem;
            }
            
            .unified-box {
                margin: 1rem auto;
            }
        }
        
        /* Content Section Styles (Same as sample page) */
        .content-section {
            max-width: 1100px;
            margin: 3rem auto;
            padding: 0 1.5rem;
        }
        
        .content-section h2 {
            color: #2d3748;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .content-section h3 {
            color: #4a5568;
            font-size: 1.3rem;
            margin: 2rem 0 1rem 0;
        }
        
        .content-section p {
            line-height: 1.7;
            margin-bottom: 1.2rem;
            color: #4a5568;
        }
        
        .content-section ul, .content-section ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        
        .content-section li {
            margin-bottom: 0.8rem;
            line-height: 1.6;
            color: #4a5568;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .feature-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #4a7bff;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
        }
        
        .faq-answer {
            color: #4a5568;
        }
        
        /* Animation for buttons (same as sample page) */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .modern-button {
            position: relative;
            overflow: hidden;
        }
        
        .modern-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .modern-button:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .upload-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }
        
        .convert-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 24px rgba(66, 153, 225, 0.5);
        }
        
        .download-btn:hover {
            transform: translateY(-2px);
        }
        
        #downloadBtn:hover {
            box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
        }
        
        #downloadZipBtn:hover {
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
        }
        
        #downloadIndividualBtn:hover {
            box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
        }
        
        .modern-button:active {
            transform: translateY(0);
        }
        
        #imageGrid::-webkit-scrollbar {
            width: 8px;
        }
        
        #imageGrid::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }
        
        #imageGrid::-webkit-scrollbar-thumb {
            background: #cbd5e0;
            border-radius: 4px;
        }
        
        #imageGrid::-webkit-scrollbar-thumb:hover {
            background: #a0aec0;
        }
        
        #clearBtn:hover {
            background: #fee2e2;
            border-color: #fca5a5;
        }
