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

canvas {
    background: transparent;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #000;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #fff;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

:root {
    --ball-r: 180;
    --ball-g: 100;
    --ball-b: 255;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: radial-gradient(ellipse at center top, 
        rgba(var(--ball-r), var(--ball-g), var(--ball-b), 0.15) 0%, 
        rgba(var(--ball-r), var(--ball-g), var(--ball-b), 0.05) 40%, 
        #000000 70%);
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.8) 100%);
}

.canvas-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, 
        rgba(var(--ball-r), var(--ball-g), var(--ball-b), 0.15) 0%, 
        rgba(var(--ball-r), var(--ball-g), var(--ball-b), 0.05) 40%, 
        transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 320px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.title {
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.25em;
    text-transform: lowercase;
    user-select: none;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    animation: bounce 2s infinite;
}

.scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-hint svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.section {
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
}

.section-content {
    max-width: 600px;
    width: 100%;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(180, 100, 255, 0.8);
    margin-bottom: 2rem;
}

.section p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.links {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.links a:hover {
    color: rgba(180, 100, 255, 0.9);
}

.links a svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

footer {
    padding: 40px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}
