#game-container {
    width: 400px;
    height: 600px;
    background-color: #2c3e50;
    display: flex;
    flex-direction: column;
}

#game-area {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#input-area {
    height: 60px;
    background-color: #34495e;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#type-input {
    width: 90%;
    padding: 10px;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    outline: none;
    text-align: center;
}

.falling-word {
    position: absolute;
    color: #ecf0f1;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #000;
    white-space: nowrap;
    transform: translateX(-50%);
}

#hud-score {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 5px;
}
