@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

body {
            min-height: 100vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #f5f5f5;
            font-family: Arial, sans-serif;
        }
 
 .main-header {
        top: 0;
        left: 0;
        width: 100vw;
        min-height: 100px;
        background: #861e13;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        z-index: 1000;
    }
.main-header-text {
    color: #fff;
    font-family: Impact, Charcoal, 'Arial Black', sans-serif;
    font-size: 2.7em;
    font-style: italic;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    user-select: none;
    margin-top: 18px;
    line-height: 1.1;
}

#sub-footer {
        width: 100vw;
        background: #f5f5f5;
        border-top: 1px solid #e0e0e0;
        left: 0;
        bottom: 0;
        z-index: 999;
    }
#sub-footer-core {
    max-width: 900px;
    margin: 0 auto;
    padding: 22px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85em;
}
.copyright {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.mispoliticas {
    margin-bottom: 6px;
}
.mispoliticas a {
    color: #555;
    font-size: 0.85em;
    text-decoration: underline;
    margin: 0 2px;
}
.mispoliticas a:hover {
    color: #2980b9;
}
.micopyright {
    color: #888;
    font-size: 0.85em;
}
@media (max-width: 600px) {
    #sub-footer-core { font-size: 0.85em; }
    .mispoliticas a, .micopyright { font-size: 0.85em; }
}

.info-msg {
    max-width: 600px;
    min-width: 320px;
    background: #f9f6e7;
    border: 1.5px solid #f1e1a6;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.12);
    padding: 32px 24px 24px 24px;
    margin: 60px auto 30px auto; /* separación de 3 líneas aprox */
    text-align: center;
    font-size: 1.08em;
    color: #333;
    font-weight: 500;
    display: block;
}
.info-msg .info-title {
    font-weight: bold;
    display: block;
    margin-bottom: 1.2em;
    font-size: 1.13em;
}
.info-msg .info-line {
    display: block;
    margin-bottom: 0.7em;
}
.info-msg a {
    color: #c0392b;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s;
}
.info-msg a:hover {
    color: #2980b9;
    text-decoration: underline;
}



h1 {
    margin-bottom: 5px;
    color: #17611a;
    text-align: center;
    font-size: 2.1rem;
    letter-spacing: 1px;
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    text-shadow: 0 2px 8px #e6d3c2;
}

#areaJuego {
    width: 380px;
    height: 380px;
    background: #fff;
    margin: 40px auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(90,45,12,0.18), 0 2px 8px 0 rgba(44,62,80,0.10);
    border: 12px solid;
    border-image: linear-gradient(135deg, #a0522d, #5a2d0c 80%, #a0522d) 1;
    border-radius: 24px;
    position: relative;
}

.jugar-btn {
    color: #17611a;
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    font-size: 2.2rem;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow: 0 2px 8px #e6d3c2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.jugar-btn:hover {
    color: #43ea3a;
    text-shadow: 0 2px 12px #b6f7b2;
}

#marcador-tiempo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 28px 0 18px 0;
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    font-size: 1.08rem;
    gap: 36px;
}
#marcador, #tiempo {
    color: #7a3a10;
    text-shadow: 0 1px 4px #e6d3c2;
}
.marcador-aciertos {
    color: #17611a;
}
.marcador-fallos {
    color: #c0392b;
}
@media (max-width: 600px) {
    #sub-footer-core { font-size: 0.85em; }
    .mispoliticas a, .micopyright { font-size: 0.85em; }
    #marcador-tiempo-container {
        font-size: 0.98rem;
        gap: 16px;
        margin: 18px 0 10px 0;
    }
}

.pregunta-juego {
    text-align: center;
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    color: #17611a;
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 18px;
}
.input-juego {
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    font-size: 1.1em;
    border: 2.5px solid #7a3a10;
    border-radius: 8px;
    padding: 2px 10px;
    outline: none;
    text-align: center;
    color: #17611a;
    margin-right: 10px;
    box-shadow: 0 1px 4px #e6d3c2;
    width: 70px;
    background: #fff9f3;
}
.input-juego::-webkit-outer-spin-button,
.input-juego::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.input-juego[type=number] {
    -moz-appearance: textfield;
}
.boton-juego {
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    padding: 2px 18px;
    border-radius: 8px;
    background: #17611a;
    color: #fff;
    border: none;
    box-shadow: 0 1px 4px #e6d3c2;
    transition: background 0.2s, color 0.2s;
    margin-left: 8px;
    cursor: pointer;
    display: inline-block;
}
.boton-juego:hover {
    background: #43ea3a;
    color: #17611a;
}
#pregunta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pregunta-juego + .input-juego,
.input-juego + .boton-juego {
    display: inline-block;
}
.pregunta-juego {
    margin-bottom: 10px;
}
.pregunta-juego, .input-juego, .boton-juego {
    vertical-align: middle;
}
.pregunta-input-btn-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.fin-juego-titulo {
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    font-size: 1.5em;
    color: #17611a;
    text-align: center;
    margin-bottom: 12px;
}
.fin-juego-puntuacion {
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    font-size: 1.08em;
    color: #7a3a10;
    text-align: center;
    margin-bottom: 18px;
}
.boton-reiniciar {
    font-family: 'Fredoka One', cursive, Comic Sans MS, Arial, sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    padding: 4px 22px;
    border-radius: 8px;
    background: #17611a;
    color: #fff;
    border: none;
    box-shadow: 0 1px 4px #e6d3c2;
    transition: background 0.2s, color 0.2s;
    margin: 0 auto;
    cursor: pointer;
    display: block;
}
.boton-reiniciar:hover {
    background: #43ea3a;
    color: #17611a;
}


