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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #2e3e4e;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 60px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    display: block;
}

.tagline {
    font-size: 18px;
    color: #d6d4d4;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.download-buttons {
    margin: 0 auto;
    /* display: flex;
    flex-direction: column; */
    gap: 16px;
    width: 100%;
    max-width: 280px;
}

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

.download-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.download-btn:active {
    transform: translateY(0);
}

.download-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    width: 100%;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-separator {
    color: #444444;
    font-size: 14px;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .download-buttons {
        flex-direction: row;
        max-width: 400px;
    }

    .download-img {
        max-width: 220px;
    }

    .logo {
        max-width: 400px;
    }

    .tagline {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }

    .tagline {
        font-size: 16px;
    }

    .download-img {
        max-width: 180px;
    }
}

