@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100vw;
    background: #000;
    color: #fff;
    font-family: 'Audiowide', sans-serif;    
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    margin-top: 8vh; /* Aumenta la distancia del borde superior */
}

h1 {
    font-family: 'Audiowide', sans-serif;
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 700; /* Aumenta el grosor de la fuente */
    margin: 0 0 4.5rem 0; /* Incrementa la distancia con el subtítulo */
    padding: 0;
    line-height: 0.8;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    user-select: none;
}


.subtitle {
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3.3rem;
    font-family: 'Orbitron', Arial, sans-serif;
    width: 100%;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7rem; /* Distancia entre botones */
    width: 100%;
    margin-top: 2.5rem;
}

button, .cie10-button, .in-nhugai-button, .email-button {
    width: 180px; /* REDUCIDO el ancho de los botones */
    height: 56px;
    background: rgba(0,0,0,0.85);
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.18s, color 0.18s;
    letter-spacing: 0.5px;
    outline: none;
}

button:hover, .cie10-button:hover, .in-nhugai-button:hover, .email-button:hover {
    background: #808080;
}

.email-button {
    padding: 0;
    justify-content: center;
}

.email-button .envelope-icon {
    width: 34px;
    height: 26px;
}

.in-nhugai-button {
    /* El texto lo controla el HTML, el estilo asegura tamaño idéntico */
}

.cie10-button {
    /* Igual que los otros botones */
}

.envelope-icon {
    display: block;
    margin: auto;
}

.envelope-icon rect, .envelope-icon polyline {
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}
