/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #0B0B0D;
    --bg-secondary: #131316;
    --border-subtle: #1F1F23;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #7A7A7A;
    --accent-primary: #FF6A00;
    --accent-glow: rgba(255, 106, 0, 0.15);
    --button-border: #2A2A2A;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(180deg, #0B0B0B 0%, #141414 100%);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
