/* =============================================
   BASE — Reset, Typography, Root Tokens
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #050510;
    --surface: rgba(14, 20, 55, 0.55);
    --surface-hover: rgba(20, 30, 80, 0.7);
    --border: rgba(100, 160, 255, 0.2);
    --border-hover: rgba(100, 160, 255, 0.5);

    --blue: #64a0ff;
    --blue-bright: #7bb3ff;
    --green: #64ffb4;
    --purple: #c06aff;
    --orange: #ffa064;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;

    --text: #e6ecff;
    --text-muted: rgba(180, 195, 230, 0.65);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 100px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-blue: 0 0 30px rgba(100, 160, 255, 0.35);
    --glow-green: 0 0 30px rgba(100, 255, 180, 0.35);
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Selection */
::selection {
    background: rgba(100, 160, 255, 0.35);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--blue), var(--green));
    border-radius: 3px;
}