Rabbit Hole Animation
:root { --bg: #0b0f14; --panel: #0f1620; --text: #e7eef7; --muted: #9fb2c6; --line: #1b2a3a; --accent: #7aa7ff; --accent-glow: 0 0 20px rgba(122, 167, 255, 0.3); --success: #4ade80; --warning: #fbbf24; --error: #ff6b6b; --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace; --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } * { box-sizing: border-box; margin: 0; padding: 0; } body { background: var(--bg); color: var(--text); font-family: var(--sans); min-height: 100vh; padding: 0; overflow-x: hidden; } .hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); padding: 60px 20px 40px; text-align: center; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(122, 167, 255, 0.1) 0%, transparent 70%); pointer-events: none; } .hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 16px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; z-index: 1; } .hero p { font-size: 1.2rem; color: var(--muted); max-width: 600px; margin: 0 auto 32px; line-height: 1.6; position: relative; z-index: 1; } .container { max-width: 800px; margin: 0 auto; padding: 40px 20px; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin: 40px 0; } .feature-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 24px; text-align: center; transition: all 0.3s ease; } .feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border-color: var(--accent); } .feature-icon { font-size: 2.5rem; margin-bottom: 16px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text); } .feature-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; } .input-group { margin-bottom: 24px; position: relative; } label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 12px; font-weight: 500; } input, textarea { width: 100%; background: var(--panel); border: 2px solid var(--line); border-radius: 16px; padding: 16px; color: var(--text); font-size: 16px; font-family: inherit; transition: all 0.3s ease; } input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.6; } textarea { min-height: 120px; resize: vertical; font-family: var(--sans); } input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--accent-glow); } .btn { width: 100%; background: var(--gradient); color: white; border: none; border-radius: 16px; padding: 18px; font-size: 18px; font-weight: 600; cursor: pointer; margin-top: 16px; transition: all 0.3s ease; position: relative; overflow: hidden; } .btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; } .btn:hover::before { left: 100%; } .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(122, 167, 255, 0.4); } .btn:active { transform: translateY(0); } .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; } .response { margin-top: 32px; padding: 24px; background: var(--panel); border: 2px solid var(--line); border-radius: 16px; min-height: 200px; font-size: 16px; line-height: 1.7; white-space: pre-wrap; word-break: break-word; position: relative; } .response.empty { color: var(--muted); font-style: italic; display: flex; align-items: center; justify-content: center; text-align: center; } .response-content { animation: fadeInUp 0.5s ease; } .error { color: var(--error); font-size: 14px; margin-top: 12px; padding: 12px; background: rgba(255, 107, 107, 0.1); border-radius: 8px; border-left: 4px solid var(--error); } .loading { color: var(--accent); font-size: 16px; margin-top: 16px; display: flex; align-items: center; gap: 12px; } .loading-dots { display: flex; gap: 4px; } .loading-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: bounce 1.4s infinite ease-in-out both; } .loading-dots span:nth-child(1) { animation-delay: -0.32s; } .loading-dots span:nth-child(2) { animation-delay: -0.16s; } .file-input { display: none; } .file-label { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; background: var(--panel); border: 3px dashed var(--line); border-radius: 20px; padding: 40px 24px; text-align: center; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; } .file-label:hover { border-color: var(--accent); transform: translateY(-2px); } .file-label.has-file { border-style: solid; border-color: var(--accent); background: rgba(122, 167, 255, 0.05); } .file-label i { font-size: 3rem; margin-bottom: 16px; color: var(--accent); } .preview { max-width: 100%; max-height: 250px; border-radius: 12px; margin-top: 20px; display: none; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); } .preview.show { display: block; animation: scaleIn 0.3s ease; } .stats { display: flex; justify-content: space-between; margin-top: 24px; padding: 16px; background: var(--panel); border-radius: 12px; border: 1px solid var(--line); } .stat { text-align: center; } .stat-number { font-size: 2rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .stat-label { font-size: 0.9rem; color: var(--muted); } footer { text-align: center; padding: 40px 20px; color: var(--muted); border-top: 1px solid var(--line); margin-top: 60px; } @keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } } @media (max-width: 768px) { .hero h1 { font-size: 2.2rem; } .hero p { font-size: 1rem; } .features-grid { grid-template-columns: 1fr; } .stats { flex-direction: column; gap: 20px; } } /* Remote Control Styles */ .remote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); } .remote-btn { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 16px 8px; color: var(--text); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all 0.2s; font-size: 0.85rem; } .remote-btn:hover { border-color: var(--accent); background: rgba(122, 167, 255, 0.1); transform: translateY(-2px); } .remote-btn i { font-size: 1.5rem; color: var(--accent); } .remote-title { grid-column: 1 / -1; font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: var(--text); display: flex; align-items: center; gap: 12px; } .remote-title i { color: var(--accent); }

SideSnipe Visionary Screenshot Sage

Upload any screenshot and get instant AI-powered insights, analysis, and smart suggestions

AI-Powered Analysis

Advanced vision AI understands context, emotions, and patterns in your screenshots

Real-time Insights

Get instant feedback and suggestions with streaming responses

Privacy First

Your screenshots are processed securely and never stored on our servers

Your AI-powered analysis will appear here

Upload a screenshot to get started!

Remote Desktop Control
Connecting to Live Desktop...
1.2M+
Screenshots Analyzed
99.8%
Accuracy Rate
0.8s
Avg Response Time