/* style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    background-color: #000; 
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-wrapper {
    display: flex;
    flex-direction: column; /* Bringt Überschrift und Button-Container untereinander */
    align-items: center;    /* Zentriert alles horizontal */
    gap: 40px;              /* Abstand zwischen Schrift und Buttons */
}

h1 { 
    font-size: 4rem; 
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NEU: Container sorgt dafür, dass Android und iOS nebeneinander stehen */
.btn-container {
    display: flex;
    gap: 20px;              /* Abstand zwischen den beiden Buttons */
}

.btn-download {
    background-color: #fff;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;     /* Sorgt für zentrierten Text im Button */
}

.btn-download:hover {
    transform: scale(1.05);
    background-color: #ccc;
}