<!-- mobile-prompt.css -->
/* App Download Overlay */
#app-download-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

#app-download-overlay.show {
    display: flex;
}

.download-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 400px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.app-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #4CAF50;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.download-card h2 {
    margin: 0 0 12px;
    color: #333;
    font-size: 24px;
}

.download-card p {
    color: #666;
    margin: 0 0 24px;
    line-height: 1.5;
}

.timer {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    display: none; /* Hide timer - no auto-dismiss */
}

.btn-download {
    display: block;
    width: 100%;
    padding: 16px;
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 12px;
}

.btn-download:hover {
    background: #7c3aed;
}

.btn-continue {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.btn-continue:hover {
    background: #f5f5f5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Hide from bots */
.js-only {
    display: none;
}
