/* App Download Section */
.app-download-section {
    display: none;
    /* Hidden on Desktop */
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('../images/android_download_banner.png');
    background-size: cover;
    background-position: center;
    border-top: 1px solid #334155;
    border-bottom: 1px solid #334155;
}

@media (max-width: 991px) {
    .app-download-section {
        display: block;
        /* Shown on Tablets and Mobile */
    }
}

.download-artwork {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #38bdf8;
}

.btn-download-app {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    background: linear-gradient(45deg, #38bdf8, #22c55e);
    color: #0f172a;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-download-app:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(56, 189, 248, 0.3);
    color: #000;
}

/* Floating Download Button */
.floating-download-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    /* Hidden by default, shown via media query */
}

@media (max-width: 768px) {
    .floating-download-btn {
        display: block;
    }
}

.floating-btn-content {
    background: linear-gradient(45deg, #38bdf8, #22c55e);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float-pulse 2s infinite;
    text-decoration: none;
}

.floating-btn-content:hover {
    color: #000;
}

@keyframes float-pulse {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
        box-shadow: 0 15px 25px rgba(56, 189, 248, 0.4);
    }

    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}