body {
    font-family: Arial, sans-serif;
    background: linear-gradient(#fcf75e, #4c2882, #e55137);
    margin: 0;
    text-align: center;
    min-height: 100vh;
}

.container {
    padding: 20px;
}

h1 {
    margin-top: 20px;
}

.subtitle {
    color: #444;
}

.card {
    background: white;
    max-width: 500px;
    margin: auto;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#photo {
    width: 100%;
    border-radius: 20px;
    max-height: 500px;
    object-fit: cover;
}

.buttons {
    margin-top: 20px;
}

button {
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    margin: 8px;
    font-size: 16px;
    transition: .2s;
}

button:hover {
    transform: scale(1.05);
}

.mucho {
    background: #00c853;
    color: white;
}

.poco {
    background: #ffb300;
    color: white;
}

.nada {
    background: #d50000;
    color: white;
}

.hidden {
    display: none;
}

.resultado-card {
    background: white;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

#resultadoImagen {
    width: 100%;
    border-radius: 20px;
    margin-top: 10px;
}

#resultadoTexto {
    font-size: 30px;
}

#resultadoFrase {
    font-size: 20px;
    color: #555;
}

.acciones {
    margin-top: 20px;
}

#fin {
    font-size: 28px;
    margin-top: 40px;
    font-weight: bold;
}