:root {
    --bg-main: #f0f9ff;
    --card-bg: rgba(255, 255, 255, 0.7);
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --text-main: #1e293b;
    --text-soft: #64748b;
    --success: #10b981;
    --border: rgba(59, 130, 246, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }

body {
    background-color: var(--bg-main);
    background-image: radial-gradient(at 0% 0%, hsla(210,100%,93%,1) 0, transparent 50%), 
                      radial-gradient(at 100% 100%, hsla(210,100%,90%,1) 0, transparent 50%);
    color: var(--text-main);
    font-family: 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
}

/* Cursor Elements */
.cursor-dot { width: 6px; height: 6px; background: var(--accent); position: fixed; z-index: 1000; border-radius: 50%; pointer-events: none; }
.cursor-outline { width: 30px; height: 30px; border: 2px solid var(--accent); position: fixed; z-index: 1000; border-radius: 50%; pointer-events: none; transition: transform 0.2s ease; }

.app-wrapper { max-width: 900px; margin: 0 auto; padding: 60px 20px; }

.hero-section { text-align: center; margin-bottom: 50px; }
.main-title { font-size: 2.5rem; font-weight: 800; color: #0f172a; }
.main-title span { color: var(--accent); }
.subtitle { color: var(--text-soft); font-weight: 500; margin-top: 8px; }

.upload-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }

.drop-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px dashed var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.drop-card:hover { border-color: var(--accent); background: white; transform: translateY(-4px); }
.card-icon { font-size: 2rem; margin-bottom: 15px; }

.action-bar {
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: 0.2s;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
.btn-ghost { background: transparent; color: var(--text-soft); }
.btn-success { background: var(--success); color: white; }
.btn-success:disabled { background: #e2e8f0; color: #94a3b8; }

.preview-card { background: #1e293b; border-radius: 20px; overflow: hidden; margin-top: 20px; }
.preview-header { background: #0f172a; padding: 12px 20px; display: flex; justify-content: space-between; color: #94a3b8; font-size: 0.8rem; }
.code-area { padding: 20px; color: #bae6fd; font-family: monospace; font-size: 0.9rem; max-height: 300px; overflow-y: auto; }

.social-footer {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.creator-tag { font-weight: 600; color: var(--text-soft); }
.creator-tag span { color: var(--text-main); }
.social-links a { margin-left: 20px; text-decoration: none; color: var(--accent); font-weight: 600; font-size: 0.9rem; }

@media (max-width: 600px) {
    .upload-container { grid-template-columns: 1fr; }
    .action-bar { flex-direction: column; gap: 20px; }
}