.game-section {
    background: #0a0a0f4c;
    color: #e0f7fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
}

.word-rain-container {
    background: rgba(0, 246, 255, 0.07);
    border: 2px solid #00f6ff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 24px rgba(0,246,255,0.08);
    text-align: center;
    min-width: 500px;
    min-height: 600px;
    position: relative;
}

#game-area {
    position: relative;
    width: 100%;
    height: 300px;
    background: rgba(0, 246, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.word {
    position: absolute;
    color: #00f6ff;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 8px #00f6ff88;
    user-select: none;
    pointer-events: none;
}

#word-input {
    width: 80%;
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid #00f6ff;
    background: #11131a;
    color: #e0f7fa;
    font-size: 1.1rem;
    outline: none;
    margin-bottom: 1rem;
}

#score {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a0a0fdd;
    color: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    font-size: 1.5rem;
    z-index: 10;
}

.hidden {
    display: none;
}