:root {
    --bg: #ffffff;
    --card: #f9fafb;
    --fg: #000000;
    --muted: #1f2937;
    --accent: #2563eb;
    --blue: #2563eb;
    --pink: #e91e63;
    --bg-home: #f4f6f8;
    --card-home: #ffffff;
    --fg-home: #111827;
    --muted-home: #6b7280;
    --shadow-strong: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ====== GLOBAL RESET ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
}

/* Helper Classes */
.hidden {
    display: none !important;
}