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

.monkey-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: 350px;
    min-height: 500px;
    position: relative;
}

#tree-area {
    position: relative;
    width: 80px;
    height: 300px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(to top, #4e342e 80%, transparent 100%);
    border-radius: 20px;
    overflow: visible;
}

#tree {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 20px;
    height: 100%;
    background: #795548;
    border-radius: 10px;
    transform: translateX(-50%);
    z-index: 1;
}

#monkey {
    position: absolute;
    left: 50%;
    bottom: 0;
    font-size: 2.5rem;
    transform: translateX(-50%);
    z-index: 2;
    transition: bottom 0.3s;
}

#word-area {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

#climb-word {
    color: #00f6ff;
    font-weight: bold;
    margin-right: 1rem;
}

#timer {
    color: #fff176;
    font-size: 1.1rem;
}

#climb-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, #high-score {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#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;
}