:root {
    --bg: #000000;
    --card-bg: rgba(150, 150, 150, 0.06);
    --border: rgba(255, 255, 255, 0.25);
    --accent: #ffffff;
    --dim: #888888;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;

    --radius: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
    --transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    --section-gap: 100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overscroll-behavior-y: none;
    background-color: #000000;
    height: 100dvh;
}

body {
    background: transparent;
    color: white;
    font-family: system-ui, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100dvh;
    overscroll-behavior-y: none;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: block;
    pointer-events: none;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { 
    background: linear-gradient(#555, #333); 
    border-radius: 10px; 
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
    white-space: nowrap;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px 0;
}

.content-block {
    margin-bottom: var(--section-gap);
}

.content-block:last-of-type {
    margin-bottom: 0;
}

.section-title {
    font-size: 0.82rem;
    letter-spacing: 5px;
    color: var(--dim);
    margin-bottom: 32px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}