body {
    background: #5c3e2e;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#home {
    position: fixed;
    top: 25px;
    left: 25px;
    height: 75px;
    width: 75px;
    border-radius: 100%;
    border: 3px solid #3A3A3A;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    opacity: 0.5;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home:hover {
    transition: 1s ease-in-out;
    transform: rotate(360deg);
    opacity: 1;
}

#home svg {
    width: 28px;
    height: 28px;
}

.juego {
    background: #c9a87c;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 800px;
    border: 4px solid #ac8e68;
}

h2, h3 {
    color: #2e1e12;
    margin: 0 0 20px 0;
}

.columnas {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.columna {
    flex: 1;
    background: #b5926a;
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #8b6b4f;
}

.emojis, .palabras {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.emoji {
    font-size: 4rem;
    background: #d9b382;
    width: 150px;
    padding: 15px 0;
    border-radius: 30px;
    border: 3px solid #8b6b4f;
    cursor: grab;
    user-select: none;
}

.emoji:active {
    cursor: grabbing;
    background: #c4a484;
}

.emoji.oculto {
    opacity: 0;
    pointer-events: none;
}

.palabra {
    font-size: 2rem;
    background: #e0b589;
    width: 200px;
    padding: 15px 0;
    border-radius: 40px;
    border: 3px solid #7b5f47;
    color: #2e1e12;
    font-weight: bold;
}

.palabra.resaltado {
    background: #f5d3a0;
    border-color: #f7d44a;
}

#mensaje {
    font-weight: bold;
}