/* Download App Modal Styles */

.download-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.download-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

.download-modal-header {
    background: linear-gradient(135deg, #e91e63 0%, #f44336 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.download-modal-header .icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

.download-modal-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
}

.download-modal-header p {
    margin: 0;
    font-size: 16px;
    opacity: 0.95;
}

.download-modal-body {
    padding: 30px;
}

.download-modal-body .features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.download-modal-body .features li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-modal-body .features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e91e63 0%, #f44336 100%);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.download-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-btn.playstore {
    background: #000;
    color: white;
}

.download-btn.playstore:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-btn.appstore {
    background: #000;
    color: white;
}

.download-btn.appstore:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-btn .icon {
    font-size: 24px;
}

.skip-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 12px;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skip-btn:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

.powered-by {
    text-align: center;
    padding: 15px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #666;
}

.powered-by strong {
    color: #e91e63;
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 640px) {
    .download-modal {
        width: 95%;
        margin: 20px;
    }

    .download-modal-header h2 {
        font-size: 24px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }
}

