/**
 * Coslife DistributorHub - Core Application Variables & Global Resets
 */

:root {
    --primary-hub-color: #0073aa;
    --accent-gold: #ff9800;
    --accent-hover: #e68900;
    --bg-dark-canvas: #121212;
    --surface-dark: #1e1e1e;
    --text-white: #ffffff;
    --text-muted: #b3b3b3;
    --error-red: #e63946;
    --success-green: #2a9d8f;
    --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg-dark-canvas);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Base structural viewport wrappers */
#app-viewport-root {
    min-height: 100vh;
    width: 100vw;
    position: relative;
}

.hidden {
    display: none !important;
}