body {
    font-family: 'VT323', monospace;
    background-color: #f8e7ff;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

.title {
    margin-top: 20px;
    color: #ff5ccf;
    font-size: 36px;
}

.subtitle {
    font-size: 20px;
    color: #a63de0;
    margin-bottom: 20px;
}

.game-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 20px auto;
    border: 4px solid #ffb0e0;
    border-radius: 15px;
    background-color: #fff0f8;
    overflow: hidden;
}

.player {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 175px;
    left: 175px;
    z-index: 2;
    transition: all 0.2s ease;
}

.item {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 1;
    cursor: pointer;
}

.good {
    /* objetos buenos */
}

.bad {
    /* trampas */
}

.controls {
    margin-top: 20px;
}

.btn {
    font-size: 24px;
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 10px;
    background-color: #ff8de0;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background-color: #ff5ccf;
}

.score-box {
    margin-top: 20px;
    font-size: 18px;
    color: #ff5ccf;
}

.feedback-box {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    min-height: 40px;
    color: #a63de0;
}
