/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a202c; /* bg-gray-900 */
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.main-screen {
    text-align: center;
    max-width: 600px;
}

.logo {
    width: 320px;  /* similar a w-80 */
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: #CBD5E0; /* text-gray-300 */
    margin-bottom: 1.5rem;
}

.download-button {
    background-color: #38A169; /* bg-green-500 */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #2F855A; /* hover:bg-green-600 */
}
