/* ===== Base Styles ===== */

:root {
    --bg: #f5f6f8;
    --bg-light: #ffffff;
    --border: #dcdfe6;
    --text: #2d2d2d;
    --text-muted: #6b7280;
    --primary: #4a6cf7;
    --primary-hover: #3a59d4;
    --accent: #f5a623;
    --danger: #e74c3c;
    --radius: 8px;
    --shadow: 0 2px 6px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
    --spacing: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

h1, h2, h3 {
    font-weight: 600;
    margin-bottom: 12px;
}

p {
    color: var(--text-muted);
}

/* ===== Mobile Responsiveness ===== */

@media (max-width: 480px) {
    body {
        padding: 0;
        margin: 0;
    }
}
