body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #45524F, #d73232);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mensaje {
    font-size: 1rem;
    margin-bottom: 30px;
}

.btn-descarga {
    display: inline-block;
    background-color: #E67823;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-descarga:hover {
    background-color: #d1671f;
}
