/* ═══════════════════════════════════════════
   Uncledrew — Shared Design Tokens
   ═══════════════════════════════════════════ */
:root {
    --bg-page: #0f1115;
    --bg-surface: #1a1c20;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent: #5b7fa6;
    --accent-hover: #6e93bc;
    --border: rgba(255, 255, 255, 0.08);
    --r-lg: 16px;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
