body {
    background-color: #f0f4c3;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 3px solid #5d4037;
    text-align: center;
    width: 420px;
}

h1 {
    color: #3e2723;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
}

.instructions {
    color: #5d4037;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.status-bar {
    background-color: #efebe9;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #4e342e;
    margin-bottom: 20px;
    border: 1px solid #d7ccc8;
}

.farm-scene {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.clickable-element {
    background-color: #fff8e1;
    border: 2px solid #ffe082;
    border-radius: 8px;
    padding: 20px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clickable-element:hover {
    transform: translateY(-2px);
    background-color: #fff3e0;
    border-color: #ffb74d;
}

/* Estilo visual para quando o caminho/objeto está bloqueado */
.clickable-element.blocked {
    background-color: #e0e0e0 !important;
    border-color: #bdbdbd !important;
    opacity: 0.6;
    cursor: not-allowed;
}

.emoji {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.label {
    font-weight: bold;
    font-size: 0.85rem;
    color: #5d4037;
}

#reset-btn {
    background-color: #d84315;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#reset-btn:hover {
    background-color: #bf360c;
}

#message {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: bold;
    height: 25px;
}