/* Mimmo Academy — Shared Base Styles */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* CSS Variables (dark theme defaults) — pages can override in their inline <style> */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1e1e1e;
    --bg-card: #1a1a1a;
    --bg-hover: #2a2a2a;
    --bg-input: #121212;
    --text-primary: #f1f1f1;
    --text-secondary: #aaa;
    --text-muted: #666;
    --accent: #ff4d4d;
    --accent-hover: #ff6666;
    --border: #2a2a2a;
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
}

/* Body defaults */
body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl;
    min-height: 100vh;
}

/* Common resets */
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
