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

body, html {
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: none;
}

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    width: 0;
    height: 0;
    transition: width 0.1s, height 0.1s;
}

.cursor-core {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
}

.cursor-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: orbit 4s linear infinite;
}

.cursor-moon {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

a, button, input {
    cursor: none; /* Keep none for elements too so custom cursor reigns */
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.scroll-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.stage {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    pointer-events: none;
}

.content {
    text-align: center;
    max-width: 800px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(30px);
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 200;
    letter-spacing: 0.02em;
    color: #a0a0a0;
    line-height: 1.6;
}

.notify-form {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.notify-form input {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    min-width: 280px;
    outline: none;
    transition: border-color 0.3s;
}

.notify-form input:focus {
    border-color: #ffffff;
}

.notify-form button {
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, background-color 0.3s;
}

.notify-form button:hover ~ .custom-cursor .cursor-core,
.notify-form input:focus ~ .custom-cursor .cursor-core {
    transform: scale(1.5);
}

.notify-form button:hover {
    transform: translateY(-2px);
    background: #e0e0e0;
}
