:root {
    --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --background: 0 0% 100%;
    --foreground: 240 10% 3.9%;
    --gold: #FFD700;
    --near-black: #141415;
}

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

body {
    font-family: var(--font-sans);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 0.8s ease;
}

.logo {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 2;
    transition: color 0.8s ease;
    text-align: center;
}

.logo span {
    display: inline-block;
}

.trigger-area {
    position: absolute;
    z-index: 3;
    opacity: 0;
}

.cursor {
    width: 20px;
    height: 20px;
    background: hsl(var(--foreground));
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: all 0.1s ease;
    z-index: 1;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: hsl(var(--foreground) / 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: hsl(var(--foreground) / 0.1);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 1s ease;
}

body.activated {
    background-color: var(--near-black);
}

body.activated .logo {
    color: var(--gold);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    * {
        cursor: auto; /* Reset cursor to default on mobile */
    }

    /* Add touch feedback */
    .logo:active {
        opacity: 0.8;
    }
}