:root {
    --bg-color: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-1: #e0e0e0;
    --accent-2: #f0f0f0;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* No scroll */
    background-color: var(--bg-color);
    font-family: var(--font-main);
    color: var(--text-primary);
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f4f4f4 100%);
}

.content-wrapper {
    z-index: 10;
    text-align: center;
    padding: 2rem;
    position: relative;
}

/* Typography */
.label-sub {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.label-main {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 600;
    font-style: normal;
    /* No italics */
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Background Effects - Subtle Light Blobs */
.background-glob {
    position: absolute;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(230, 240, 255, 0.6) 0%, rgba(255, 255, 255, 0) 70%);
    top: -20%;
    left: -10%;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.glob-2 {
    background: radial-gradient(circle, rgba(255, 230, 230, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
    top: auto;
    left: auto;
    bottom: -20%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    filter: blur(80px);
    animation: float 25s infinite ease-in-out reverse;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 30px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .label-main {
        font-size: 2.5rem;
    }

    .label-sub {
        font-size: 1rem;
    }
}

/* Small mobile check */
@media (max-width: 380px) {
    .label-main {
        font-size: 2rem;
    }
}