:root {
    --bg-base: #000000;
    --text-primary: #f5f5f7;
    --blob-1: #ff2d55;
    --blob-2: #5e5ce6;
    --blob-3: #32ade6;
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ambient-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    filter: blur(100px);
    transform: translate3d(0, 0, 0);
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 12s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    will-change: transform;
}

.blob-primary {
    width: 45vw;
    height: 45vw;
    background: var(--blob-1);
    top: -15%;
    left: -10%;
}

.blob-secondary {
    width: 35vw;
    height: 35vw;
    background: var(--blob-2);
    bottom: -15%;
    right: -10%;
    animation-delay: -4s;
    animation-duration: 15s;
}

.blob-tertiary {
    width: 40vw;
    height: 40vw;
    background: var(--blob-3);
    top: 20%;
    left: 30%;
    animation-delay: -8s;
    animation-duration: 10s;
}

@keyframes float {
    0% { 
        transform: translate(0, 0) scale(1); 
    }
    100% { 
        transform: translate(15vw, 15vh) scale(1.15); 
    }
}

.content-layer {
    position: relative;
    z-index: 10;
}

h1 {
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #e4e4e4 0%, #ccccd1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}
