body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#sonicCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind the text */
}

.container {
    text-align: center;
    position: relative;
    z-index: 1; /* In front of the canvas */
}

h1 {
    font-weight: 300;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

p {
    font-weight: 300;
    color: #888;
}

.input-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wordInput {
    background: transparent;
    border: 1px solid #444;
    color: #e0e0e0;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px 0 0 5px;
    width: 300px;
    outline: none;
    transition: border-color 0.3s;
}

#wordInput:focus {
    border-color: #777;
}

#submitButton {
    background-color: #333;
    border: 1px solid #444;
    border-left: none;
    color: #e0e0e0;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s;
}

#submitButton:hover {
    background-color: #444;
}

#version-info {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    color: #555;
    z-index: 100;
    font-family: monospace;
} 