body {
    margin: 0;
    overflow: hidden;
    background: black;
    font-family: 'Segoe UI', sans-serif;
}

/* Canvas full screen */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

/* FIXED: correct class name */
.ui-container {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10; /* 🔥 IMPORTANT */
}

/* Glass input */
#inputBox {
    width: 300px;
    padding: 14px 20px;
    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);

    color: white;
    font-size: 16px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    outline: none;

    box-shadow: 
        0 0 10px rgba(255,255,255,0.1),
        inset 0 0 10px rgba(255,255,255,0.05);

    transition: 0.3s;
}

#inputBox:focus {
    border-color: rgba(255,255,255,0.6);
    box-shadow: 
        0 0 20px rgba(255,255,255,0.3),
        inset 0 0 10px rgba(255,255,255,0.1);
}

#inputBox::placeholder {
    color: rgba(255,255,255,0.5);
}

/* 🔥 ADD THIS (your missing text style) */
.status {
    margin-top: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    letter-spacing: 1px;
}

/* OPTIONAL: blinking effect */
@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.status {
    animation: blink 1.5s infinite;
}