* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(45deg, #1a1a1a, #000000);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}



h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.logo {
    max-height: 360px;
    max-width: 100%;
    height: auto;
    width: auto;
    margin-bottom: 40px;
    object-fit: contain;
}



.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.download-btn img {
    height: 60px;
    width: auto;
    display: block;
}

.download-btn:hover {
    transform: translateY(-3px);
}

/* Responsive design */
@media (max-width: 480px) {
    .content {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .download-btn {
        max-width: 100%;
    }
}

@media (min-width: 600px) {
    .buttons {
        flex-direction: row;
        justify-content: center;
    }
}