@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

body {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    background-color: #4BA3DB;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: background 0.3s ease-in-out;
}

.container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    text-align: center;
}

.app-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.app-name {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tag-line {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
    color: #E82470;
}

.subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #555;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.download-buttons a {
    width: 180px;
    transition: transform 0.3s ease-in-out;
}

.download-buttons a:hover {
    transform: scale(1.05);
}

.download-buttons a img {
    width: 100%;
    border-radius: 5px;
}

.contact-button {
    margin-top: 20px;
    background: #413E3E;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
}

.contact-button:hover {
    background: #2b2a2a;
}

/* Mobile-friendly adjustments */
@media (max-width: 600px) {
    body {
        background: white;
        border-top: 12px solid #ffa100;
    }

    .container {
        padding: 20px;
    }
}