body {
    margin: 0;
    background-color: #2d3a27;
    font-family: 'Crimson Pro', serif;
    overflow: hidden;
    color: #fcfaf2;
}

canvas { display: block; }

#modalEl {
    background: rgba(45, 58, 39, 0.85);
    backdrop-filter: blur(5px);
}

.cottage-card {
    background-color: #fcfaf2;
    border: 2px solid #8b9d77;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.btn-nature {
    background-color: #5d7a5c;
    transition: all 0.3s;
    color: #fcfaf2;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.btn-nature:hover {
    background-color: #4a6149;
    transform: scale(1.02);
}

/* --- NUEVOS ESTILOS PARA VOLVER --- */

.btn-return-menu {
    display: block;
    margin-top: 10px;
    padding: 10px;
    color: #5d7a5c;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #5d7a5c;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-return-menu:hover {
    background-color: #5d7a5c;
    color: #fcfaf2;
}

.btn-back-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 20;
    background: rgba(252, 250, 242, 0.1);
    color: #fcfaf2;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid rgba(252, 250, 242, 0.3);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-back-floating:hover {
    background: #fcfaf2;
    color: #2d3a27;
    border-color: #fcfaf2;
}

/* Ajuste para separar los botones en el modal */
.flex-col {
    display: flex;
    flex-direction: column;
}

.gap-4 {
    gap: 1rem;
}