@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;600;700&display=swap');

body {
    background:
        linear-gradient(180deg, rgba(85, 160, 155, 0.15) 0%, rgba(60, 70, 70, 0.25) 100%),
            url('/playhitsgame/images/wood_turquoise_texture.webp');
    background-blend-mode: multiply;
    background-size: cover;
    background-attachment: fixed;
    color: #2e241a;
    font-family: 'Barlow Semi Condensed', sans-serif;
    letter-spacing: 0.4px;
    margin: 0;
}

h1.h6,
h1.titulo-juego,
.titulo-juego {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff7c2; /* tono crema brillante */
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow:
        0 0 8px #ff9900,
        0 0 16px #ff6600,
        0 0 32px rgba(255, 128, 0, 0.7),
        0 2px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    text-align: center;
}

h1.titulo-juego span {
    color: #ffcc33;
}

/* 🪩 Texto de versión */
.text-muted,
.version,
p.version {
    color: #f9e8b2 !important;
    font-size: 0.9rem;
    text-shadow:
        0 0 4px rgba(255, 165, 0, 0.8),
        0 0 2px rgba(0, 0, 0, 0.7);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 1rem;
}

/* 🎵 Tarjeta principal */
.card {
    background: linear-gradient(145deg, #fef8e7 0%, #f3e2c0 100%);
    border: 4px solid #c94f18;
    border-radius: 1.2rem;
    box-shadow:
        0 0 0 4px #f7d88c,
        inset 0 0 15px rgba(255, 255, 255, 0.5),
        0 0 25px rgba(255, 100, 0, 0.4);
    padding: 1rem;
}

/*
.card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 4px #ffd68a,
        0 0 25px rgba(255, 140, 0, 0.7);
}
*/

/* Inputs */
.card-body input.form-control {
    background-color: #fffdf8;
    border: 2px solid #b1541a;
    border-radius: 0.5rem;
    color: #3a2b1f;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
}

.card-body input.form-control:focus {
    border-color: #e67e22;
    box-shadow: 0 0 10px #ff9900;
    background-color: #fffaf2;
}

/* Labels */
label {
    color: #b13a05;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.8px;
}

/* 🎹 Botones principales */
.btn-primary {
    background: linear-gradient(180deg, #f89e3d 0%, #d55c10 100%);
    border: 2px solid #b13a05;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        0 0 12px rgba(255, 102, 0, 0.5);
    color: #fffaf0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ffb957 0%, #e2671c 100%);
    box-shadow: 0 0 18px rgba(255, 165, 0, 0.8);
}

/* ✨ Botones tipo metal cromado */
.btn-outline-light {
    background: linear-gradient(145deg, #d6d6d6, #ffffff);
    color: #222;
    border: 2px solid #999;
    border-radius: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.7),
        0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.btn-outline-light:hover {
    background: linear-gradient(145deg, #ffffff, #d6d6d6);
    color: #000;
    box-shadow: 0 0 15px #ff9900;
}

.btn-respuesta {
    background-color: white !important;
}


/* Enlaces */
a {
    color: #b13a05;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #ff6600;
    text-shadow: 0 0 8px #ff6600;
}

/* 🎸 Título del juego */
h1.h6 {
    color: #f4a733;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #ff6600, 0 0 20px rgba(255, 165, 0, 0.7);
}

/* Footer de las tarjetas */
.card-footer {
    background: linear-gradient(180deg, #f7e9c9 0%, #f2dca8 100%);
    border-top: 3px solid #b13a05;
    color: #3a2b1f;
}

/* Imagen superior */
.img-fluid {
    filter: drop-shadow(0 0 10px #ff4500);
}

.existe {
    background-color: #f0f0f0;
}


