:root {
    --bg: #08050b;
    --bg-2: #100810;
    --bg-3: #170c18;

    --ink: #fde7f0;
    --ink-soft: #d8b6c8;
    --ink-mute: #8d7387;

    --pink: #ff9dc7;
    --pink-2: #ffbfd9;
    --pink-soft: #ffd6e6;
    --pink-bright: #ff7eb6;
    --pink-mute: #c98ba8;

    --glass: rgba(20, 12, 22, 0.55);
    --glass-strong: rgba(22, 12, 24, 0.66);
    --glass-border: rgba(255, 175, 211, 0.05);
    --glass-border-bright: rgba(255, 175, 211, 0.09);

    --grad-pink: linear-gradient(135deg, #ff9dc7 0%, #ffbfd9 100%);
    --grad-pink-soft: linear-gradient(135deg, rgba(255, 157, 199, 0.85) 0%, rgba(255, 191, 217, 0.85) 100%);
    --grad-bg: radial-gradient(ellipse at top, #16091a 0%, #0e0610 40%, #07040a 100%);
    --grad-text: linear-gradient(135deg, #ffd6e6 0%, #ff9dc7 50%, #ffbfd9 100%);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-snap: cubic-bezier(0.65, 0, 0.35, 1);

    --nav-h: 64px;
    --max-w: 1080px;
}

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

*::selection {
    background: rgba(255, 157, 199, 0.35);
    color: #fff;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Outfit', system-ui, -apple-system, Segoe UI, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html, body, body *, body *::before, body *::after {
    cursor: none !important;
}

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

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

img, svg {
    display: block;
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
    margin: 6px 0;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(180deg,
            rgba(255, 175, 211, 0.40) 0%,
            rgba(255, 142, 195, 0.35) 100%);
    border-radius: var(--radius-pill);
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: background 0.4s var(--ease);
}

::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg,
            rgba(255, 200, 224, 0.55) 0%,
            rgba(255, 175, 211, 0.45) 100%);
    background-clip: padding-box;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

html {
    scrollbar-color: rgba(255, 175, 211, 0.4) transparent;
    scrollbar-width: thin;
}

@media (max-width: 720px) {
    html, body, body *, body *::before, body *::after {
        cursor: auto !important;
    }
    button, a, input[type="range"] {
        cursor: pointer !important;
    }
}
