* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    overflow: hidden;
    background: #0a0a0a;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Controls at bottom */
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.controls {
    position: absolute;
    bottom: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.controls:hover {
    background: rgba(255, 255, 255, 0.08);
}

input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    outline: none;
    width: 200px;
    text-align: center;
    font-weight: 300;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

button {
    background: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
}