:root {
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
    --primary-color: #1a365d;
    --accent-color: #2b6cb0;
    --text-main: #2d3748;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --cta-color: #dd6b20;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, sans-serif; }
body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background-color: var(--card-bg); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.logo { font-weight: bold; font-size: 1.2rem; color: var(--primary-color); }
.nav-cta { color: var(--accent-color); font-weight: bold; text-decoration: none; }
.container { max-width: 800px; margin: 2rem auto; padding: 0 1rem; display: flex; flex-direction: column; gap: 2rem; }
.tool-card, .result-card, .cta-desktop { background: var(--card-bg); padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); text-align: center; }
h1, h2 { color: var(--primary-color); margin-bottom: 0.5rem; }
.subtitle { color: var(--text-muted); margin-bottom: 2rem; }
.drop-zone { width: 100%; height: 200px; padding: 25px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 500; font-size: 20px; cursor: pointer; color: var(--text-muted); border: 3px dashed var(--accent-color); border-radius: 10px; background-color: #f8fafc; transition: all 0.3s; position: relative; margin-bottom: 1.5rem; }
.drop-zone:hover, .drop-zone.dragover { background-color: #ebf8ff; border-color: var(--primary-color); }
.drop-zone__icon { font-size: 3rem; margin-bottom: 10px; }
.drop-zone input { position: absolute; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
button { padding: 10px 24px; border: none; border-radius: 6px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: transform 0.1s, opacity 0.2s; }
button:active { transform: scale(0.98); }
button:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background-color: var(--accent-color); color: white; width: 100%; font-size: 1.1rem; padding: 14px; }
.btn-secondary { background-color: #edf2f7; color: var(--text-main); margin-top: 1rem; }
.btn-cta { background-color: var(--cta-color); color: white; margin-top: 1rem; }
textarea { width: 100%; height: 250px; padding: 1rem; border: 1px solid var(--border-color); border-radius: 8px; resize: vertical; font-family: monospace; font-size: 14px; background-color: #fafafa; }
.ad-banner { background: #e2e8f0; height: 90px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: var(--text-muted); }