.game-section {
    background: #28282888;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#gameContainer {
    width: 70%;
    max-width: 700px;
    margin: 2rem auto;
}
#paragraph {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 2rem 0;
    padding: 1rem;
    border: 2px solid #4ecca3;
    border-radius: 5px;
    min-height: 150px;
}
.char {
    transition: all 0.1s;
}
.current {
    text-decoration: underline;
    color: #4ecca3;
}
.correct {
    color: #4ecca3;
}
.incorrect {
    color: #ff4646;
    background: rgba(255, 70, 70, 0.1);
}
#inputField {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    background: #16213e;
    border: 2px solid #4ecca3;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 1rem;
}
#stats {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 1.1rem;
}
.powerup {
    background: #4ecca3;
    color: #16213e;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3px;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}
.powerup:disabled {
    background: #666;
    cursor: not-allowed;
}
#timer {
    font-size: 1.5rem;
    color: #4ecca3;
    text-align: center;
    margin: 1rem 0;
}
.glow {
    animation: glow 1s infinite alternate;
}
@keyframes glow {
    from { text-shadow: 0 0 5px #4ecca3; }
    to { text-shadow: 0 0 15px #4ecca3; }
}
#restartBtn {
    background: #e94560;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}
.shield-active {
    border-color: #ffd700 !important;
    animation: shield-pulse 1s infinite;
}
@keyframes shield-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
#highScore {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    padding: 1rem;
    border-radius: 5px;
}
#difficulty {
    margin: 0 0 1rem 0;
    padding: 0.3rem 1rem;
    border-radius: 5px;
    border: 1px solid #4ecca3;
    background: #16213e;
    color: #4ecca3;
    font-size: 1rem;
}