:root {
    --bg: #000000;
    --bg-alt: #050505;
    --white: #ffffff;
    --text: #ffffff;
    --text-dark: #111111;
    --muted: #999999;
    --muted-dark: #666666;
    --gold: #D4AF37;
    --gold-hover: #B8860B;
    --gold-light: #F3E5AB;
    --border: rgba(255, 255, 255, 0.12);
    --border-light: rgba(0, 0, 0, 0.08);
    --ig: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    --wa: #25D366;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-elegant: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --font-base: clamp(14px, 1.5vw, 16px);
    --font-lg: clamp(16px, 2vw, 18px);
    --font-xl: clamp(20px, 3vw, 28px);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    padding-top: 100px;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}