* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #F9F4E8;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'serif', 'Times New Roman', serif;
    overflow: hidden;
}

.borde-elegante-frame {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid #B08C4E; /* Traducción de borde_elegante.xml */
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
    text-align: center;
}

.logo-img {
    width: 140px;
    filter: sepia(1) saturate(5) hue-rotate(10deg);
}

.txt-titulo {
    color: #B08C4E;
    font-size: 32px;
    font-style: italic;
    line-height: 1.2;
    font-weight: normal;
}

.txt-subtitulo {
    color: #8C7A5B;
    font-size: 14px;
    letter-spacing: 4px;
    margin-top: 10px;
    font-family: sans-serif;
}

.btn-dorado {
    width: 80%;
    max-width: 280px;
    height: 56px;
    background-color: #B08C4E; /* Traducción de boton_dorado.xml */
    color: #F9F4E8;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.1s;
}

.btn-dorado:active {
    transform: scale(0.95);
    background-color: #8C7A5B;
}