/* Global Variables and Base Styles */
:root {
    --primary-orange: #FF8C00;
    --primary-dark: #000000;
    --secondary-dark: #0a0a0a;
    --tertiary-dark: #141414;
    --text-light: #ffffff;
    --text-muted: #999999;
    --border-color: #222222;
    --success-green: #00d084;
    --card-shadow: 0 20px 60px rgba(255, 140, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}
