        .resizer-section {
            padding: 60px 0;
            background: linear-gradient(45deg, #673ab7, #3b1d6f);
            margin-top: 2px;
        }
        
        .workspace-container {
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .upload-area {
            border: 3px dashed #cbd5e1;
            border-radius: 12px;
            padding: 60px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background: #f8fafc;
        }
        
        .upload-area:hover, .upload-area.dragover {
            border-color: var(--primary);
            background: #e0e7ff;
        }
        
        .upload-area.has-files {
            padding: 30px 20px;
        }
        
        .upload-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .preview-container {
            display: none;
        }
        
        .preview-container.active {
            display: block;
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
            background: #f1f5f9;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .image-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .image-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .image-card .info {
            padding: 10px;
            font-size: 12px;
        }
        
        .image-card .remove-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #ef4444;
            color: white;
            border: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .platform-selector {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .platform-card {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 16px;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        
        .platform-card:hover, .platform-card.active {
            border-color: var(--primary);
            background: #e0e7ff;
            transform: translateY(-2px);
        }
        
        .platform-card .icon {
            font-size: 28px;
            margin-bottom: 8px;
        }
        
        .platform-card .name {
            font-weight: 600;
            font-size: 14px;
        }
        
        .platform-card .dimensions {
            font-size: 11px;
            color: #64748b;
            margin-top: 4px;
        }
        
        .canvas-preview {
            background: #1e293b;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
            margin-bottom: 20px;
            position: relative;
        }
        
        #previewCanvas {
            max-width: 100%;
            max-height: 500px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }
        
        .safe-zone-overlay {
            position: absolute;
            border: 2px dashed rgba(255,255,255,0.5);
            pointer-events: none;
            display: none;
        }
        
        .safe-zone-overlay.active {
            display: block;
        }
        
        .controls-panel {
            background: #f8fafc;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
        }
        
        .form-label {
            font-weight: 600;
            color: #475569;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .btn-resize {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.2s;
            width: 100%;
        }
        
        .btn-resize:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .btn-download {
            background: var(--success);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.2s;
            width: 100%;
        }
        
        .btn-download:hover {
            background: #059669;
            transform: translateY(-2px);
        }
        
        .btn-download:disabled {
            background: #94a3b8;
            cursor: not-allowed;
            transform: none;
        }
        
        .comparison-slider {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
        }
        
        .comparison-slider.active {
            display: block;
        }
        
        .comparison-before, .comparison-after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .comparison-after {
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
        }
        
        .comparison-handle {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: white;
            cursor: ew-resize;
            z-index: 10;
        }
        
        .cta-box {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            border: 2px dashed var(--primary);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            margin-top: 30px;
        }
        
        .ad-space {
            background: #f1f5f9;
            border: 1px dashed #cbd5e1;
            border-radius: 8px;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 14px;
            margin: 20px 0;
        }
        
        .stats-bar {
            background: #fff;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .stat-label {
            font-size: 12px;
            color: #64748b;
        }
        
        .format-selector {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        
        .format-btn {
            padding: 8px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            background: white;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 13px;
        }
        
        .format-btn.active {
            border-color: var(--primary);
            background: #e0e7ff;
            color: var(--primary);
        }
        
        .quality-slider {
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .resizer-section {
                padding: 30px 0;
				margin-top:0px;
            }
            
            .platform-selector {
                grid-template-columns: repeat(2, 1fr);
            }
        }