@font-face {
    font-family: 'HelveticaNarrowBold';
    src: url('Helvetica-Narrow-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    /* Mejora la renderización mientras carga */
}

:root {
    --rojo-almafuerte: #C20E1A;
    --negro-almafuerte: #000000;
    --gris-oscuro: #222222;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--gris-oscuro);
    font-family: 'Arial', sans-serif;
    color: white;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    color: var(--rojo-almafuerte);
    text-shadow: 3px 3px 0 var(--negro-almafuerte);
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.contenedor-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

.contenedor-texto {
    background-color: var(--rojo-almafuerte);
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    border: 5px solid var(--negro-almafuerte);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.texto-estilizado {
    font-family: 'HelveticaNarrowBold', Arial Narrow, Arial, sans-serif;
    font-size: 170pt;
    font-weight: 700;
    color: white;
    margin: 0;
    -webkit-text-stroke: 10px var(--negro-almafuerte);
    paint-order: stroke fill;
    letter-spacing: -5px;
    text-transform: uppercase;
    line-height: 0.9;
}

.controles {
    width: 100%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    border: 2px solid var(--rojo-almafuerte);
}

.grupo-controles {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--rojo-almafuerte);
}

#texto-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    background: #333;
    color: white;
    border: 2px solid #555;
    border-radius: 5px;
    text-transform: uppercase;
}

.botones-descarga {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-descarga {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: var(--rojo-almafuerte);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--negro-almafuerte);
}

.btn-descarga:hover {
    background-color: #a00c16;
    transform: translateY(-2px);
}

.footer {
    margin-top: 30px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .texto-estilizado {
        font-size: 80pt;
        -webkit-text-stroke: 5px var(--negro-almafuerte);
    }

    h1 {
        font-size: 1.8rem;
    }
}