/* ==========================================================================
   Base Styles - Reset, CSS Variables, Fonts
   ========================================================================== */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a2e;
    color: #eee;
    overflow: hidden;
}

/* CSS Variables for theming */
:root {
    --color-bg-primary: #1a1a2e;
    --color-bg-secondary: #16213e;
    --color-bg-tertiary: #0f3460;
    --color-bg-dark: #0f0f1a;
    --color-accent: #e94560;
    --color-accent-hover: #ff6b6b;
    --color-text-primary: #eee;
    --color-text-secondary: #ddd;
    --color-text-muted: #888;
    --color-text-dim: #666;
    --color-border: #0f3460;
    --color-danger: #6b2a39;
    --color-danger-hover: #8a3a4a;
}

/* Animation keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden utility class */
.hidden {
    display: none !important;
}
