* { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }
body { 
    font-family: sans-serif; 
    background: #020202; 
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    overflow: hidden; 
    color: #fff; 
}

#glow { 
    position: fixed; width: 600px; height: 600px; 
    background: radial-gradient(circle, rgba(255, 20, 147, 0.15) 0%, rgba(255, 20, 147, 0) 70%); 
    border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); z-index: 1; 
}

#dot { 
    position: fixed; width: 8px; height: 8px; background: #ff1493; 
    border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); 
    z-index: 1000; box-shadow: 0 0 15px #ff1493; 
}

#real-cursor { 
    position: fixed; width: 6px; height: 6px; background: rgba(255, 20, 147, 0.4); 
    border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); 
    z-index: 999; transition: opacity 0.3s; opacity: 0; 
}

.card { 
    position: relative; z-index: 10; background: rgba(10, 10, 10, 0.9); 
    padding: 70px 50px; border-radius: 40px; border: 1px solid rgba(255, 20, 147, 0.1); 
    width: 100%; max-width: 500px; backdrop-filter: blur(20px); transition: all 0.8s ease; 
}

.title { letter-spacing: 8px; font-size: 32px; font-weight: 300; text-align: center; }

#auth-ui { transition: all 0.6s ease; }
.exit { opacity: 0; transform: translateY(40px); }

.inputs { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.inputs input { 
    width: 50px; height: 65px; background: rgba(255,255,255,0.03); 
    border: 2px solid #222; border-radius: 12px; color: #ff1493; 
    font-size: 32px; font-weight: bold; text-align: center; outline: none; transition: 0.3s; 
}
.inputs input:focus { border-color: #ff1493; background: rgba(255,20,147,0.08); }

#err { 
    color: #ff4d4d; margin-top: 25px; opacity: 0; 
    font-size: 16px; text-align: center; font-weight: bold; 
}

.p { position: fixed; pointer-events: none; background: #ff1493; border-radius: 50%; z-index: 9999; }