/* ============ DOWNLOAD APP SECTION ============ */
.download-section {
    background: linear-gradient(135deg, rgb(6, 70, 130) 0%, rgb(14, 166, 204) 100%);
    padding: 60px 40px;
    margin: 40px 20px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(14, 166, 204, 0.3);
    animation: slideUp 0.8s ease-out;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.download-icon {
    font-size: 60px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 5px 15px rgba(14, 166, 204, 0.5));
}

.download-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #0ea6cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.download-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.download-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
    animation: fadeInDownScale 0.6s ease-out forwards;
}

.download-btn span {
    font-size: 22px;
    display: inline-block;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(14, 166, 204, 0.5);
}

.download-btn:hover span {
    transform: translateY(-3px) scale(1.2);
    animation: bounce 0.6s ease-in-out;
}

.download-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Animation for button appearance */
@keyframes fadeInDownScale {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        visibility: hidden;
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }
}

/* Disabled state */
.download-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5 !important;
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.2) 0%, rgba(100, 100, 100, 0.1) 100%) !important;
}

.download-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive Download Section */
@media screen and (max-width: 768px) {
    .download-section {
        padding: 40px 20px;
        margin: 30px 10px;
        border-radius: 20px;
    }
    
    .download-content h2 {
        font-size: 26px;
    }
    
    .download-content p {
        font-size: 15px;
    }
    
    .download-icon {
        font-size: 50px;
    }
}

@media screen and (max-width: 480px) {
    .download-section {
        padding: 30px 15px;
        margin: 20px 10px;
        border-radius: 15px;
    }
    
    .download-content h2 {
        font-size: 22px;
    }
    
    .download-content p {
        font-size: 14px;
    }
    
    .download-icon {
        font-size: 45px;
    }
    
    .download-btn {
        padding: 15px 35px;
        font-size: 16px;
        width: 100%;
    }
    
    .download-btn span {
        font-size: 20px;
    }
}
