/* Global */
body {
    margin: 0;
    height: 100vh;
    background: #000;
    overflow: hidden;
    font-family: Inter, sans-serif;
    color: white;
    cursor: none;
}

/* Neon particles */
#particle-container {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Center panel */
.center-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 60px 120px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    font-size: 48px;
    letter-spacing: 2px;
    text-shadow: 0 0 12px white;
    transition: transform 0.15s ease-out;
    z-index: 3;
}

/* Footer */
footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    z-index: 3;
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 20px white;
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
}
