@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-primary: #050505;
    --text-primary: #ffffff;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    cursor: none !important;
}

/* Hide ALL native cursors */
*,
*::before,
*::after {
    cursor: none !important;
}

@media (pointer: coarse) {
    body {
        cursor: auto !important;
    }

    *,
    *::before,
    *::after {
        cursor: auto !important;
    }
}

::-webkit-scrollbar {
    display: none;
}

#intro-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

#intro-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

#intro-overlay {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 1.2s var(--ease-out-expo);
}

#intro-overlay.visible {
    opacity: 1;
}

/* Custom cursor for intro */
.custom-cursor-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
    transition: width 0.3s, height 0.3s;
}

.btn-enter {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: none !important;
    transition: all 0.4s var(--ease-out-expo);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.btn-enter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-enter:hover::before {
    transform: translateX(0);
}

.btn-enter:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.btn-enter .arrow {
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-enter:hover .arrow {
    transform: translateX(4px);
}