/* Roz Skin Installation Wizard Styles */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); min-height: 100vh; padding: 20px; position: relative; overflow-x: hidden; } body::before { content: ''; position: fixed; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 50px 50px; animation: moveBackground 20s linear infinite; pointer-events: none; } @keyframes moveBackground { 0% { transform: translate(0, 0); } 100% { transform: translate(50px, 50px); } } .container { max-width: 900px; margin: 0 auto; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-radius: 24px; box-shadow: 0 25px 80px rgba(0,0,0,0.3); overflow: hidden; position: relative; animation: slideUp 0.6s ease; } @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .header { background: linear-gradient(135deg, #E57393 0%, #D1537A 100%); color: white; padding: 50px 40px; text-align: center; position: relative; overflow: hidden; } .header::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: pulse 4s ease-in-out infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } } .header h1 { font-size: 36px; margin-bottom: 12px; position: relative; z-index: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.2); } .header p { opacity: 0.95; position: relative; z-index: 1; font-size: 16px; } .progress { display: flex; justify-content: space-between; padding: 35px 40px; background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%); border-bottom: 1px solid #e0e0e0; } .progress-step { flex: 1; text-align: center; position: relative; transition: all 0.3s ease; } .progress-step::before { content: ''; position: absolute; top: 22px; right: 50%; width: 100%; height: 3px; background: #e0e0e0; z-index: 0; transition: all 0.5s ease; } .progress-step:first-child::before { display: none; } .progress-step.active .step-number { background: linear-gradient(135deg, #E57393 0%, #D1537A 100%); color: white; box-shadow: 0 4px 15px rgba(229, 115, 147, 0.4); transform: scale(1.1); } .progress-step.completed .step-number { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); } .progress-step.completed::before { background: linear-gradient(90deg, #10b981 0%, #059669 100%); } .step-number { width: 45px; height: 45px; border-radius: 50%; background: #e0e0e0; color: #999; display: inline-flex; align-items: center; justify-content: center; font-weight: bold; position: relative; z-index: 1; margin-bottom: 12px; transition: all 0.3s ease; font-size: 16px; } .step-label { font-size: 13px; color: #666; font-weight: 500; } .progress-step.active .step-label { color: #E57393; font-weight: 600; } .content { padding: 40px; } .form-group { margin-bottom: 25px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; } .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 14px; transition: border-color 0.3s; } .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #E57393; } .btn { padding: 14px 32px; border: none; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; gap: 10px; position: relative; overflow: hidden; text-decoration: none; } .btn::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; } .btn:hover::before { width: 300px; height: 300px; } .btn-primary { background: linear-gradient(135deg, #E57393 0%, #D1537A 100%); color: white; box-shadow: 0 4px 15px rgba(229, 115, 147, 0.3); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(229, 115, 147, 0.5); } .btn-secondary { background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%); color: white; box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3); } .btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(108, 117, 125, 0.5); } .btn-success { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: white; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3); } .btn-success:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5); } .alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; } .alert-success { background: #d1fae5; color: #065f46; border-right: 4px solid #10b981; } .alert-error { background: #fee2e2; color: #991b1b; border-right: 4px solid #ef4444; } .alert-info { background: #dbeafe; color: #1e40af; border-right: 4px solid #3b82f6; } .card { background: #f8f9fa; padding: 20px; border-radius: 10px; margin-bottom: 20px; } .card h3 { margin-bottom: 15px; color: #E57393; } .hosting-option { padding: 24px; border: 2px solid #e0e0e0; border-radius: 16px; margin-bottom: 16px; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); background: white; position: relative; overflow: hidden; } .hosting-option::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(135deg, #E57393 0%, #D1537A 100%); transform: scaleY(0); transition: transform 0.3s ease; } .hosting-option:hover { border-color: #E57393; background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); transform: translateX(-5px); box-shadow: 0 4px 20px rgba(229, 115, 147, 0.2); } .hosting-option:hover::before { transform: scaleY(1); } .hosting-option.selected { border-color: #E57393; background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); box-shadow: 0 4px 20px rgba(229, 115, 147, 0.3); } .hosting-option.selected::before { transform: scaleY(1); } .hosting-option h4 { margin-bottom: 8px; color: #333; font-size: 18px; display: flex; align-items: center; gap: 10px; } .hosting-option p { color: #666; font-size: 14px; margin-right: 34px; } .actions { display: flex; gap: 15px; justify-content: space-between; margin-top: 30px; padding-top: 30px; border-top: 1px solid #e0e0e0; } .code-box { background: #1e293b; color: #e2e8f0; padding: 20px; border-radius: 8px; font-family: 'Courier New', monospace; font-size: 13px; overflow-x: auto; margin: 15px 0; } .success-icon { font-size: 80px; color: #10b981; text-align: center; margin: 30px 0; } table { width: 100%; border-collapse: collapse; margin: 15px 0; } th, td { padding: 10px; text-align: right; border: 1px solid #e0e0e0; } th { background: #f3f4f6; font-weight: 600; } textarea { resize: vertical; } .info-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin: 0 5px; } .badge-success { background: #d1fae5; color: #065f46; } .badge-warning { background: #fef3c7; color: #92400e; } .badge-error { background: #fee2e2; color: #991b1b; } .badge-info { background: #dbeafe; color: #1e40af; } /* Responsive Design */ @media (max-width: 768px) { .container { margin: 10px; border-radius: 16px; } .header { padding: 30px 20px; } .header h1 { font-size: 28px; } .content { padding: 20px; } .progress { padding: 20px 15px; } .step-label { font-size: 11px; } .actions { flex-direction: column; } .btn { width: 100%; justify-content: center; } }