/* App Download Modal */
.app-download-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.app-download-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px 35px;
    width: 90%;
    max-width: 420px;
    text-align: center;
}

.app-download-modal-content h3 {
    margin: 0 0 16px 0;
    font-size: 20px;
    color: #333;
}

.app-download-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.app-download-close:hover {
    color: #333;
}

.app-qrcode {
    display: inline-block;
    margin: 0 auto 12px;
}

.app-qrcode img {
    display: block;
}

.app-download-link {
    display: block;
    margin: 0 0 14px;
    font-size: 13px;
    color: #0d6efd;
    word-break: break-all;
    text-decoration: none;
}

.app-download-link:hover {
    text-decoration: underline;
}

.app-download-notice {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    text-align: left;
    white-space: pre-line;
    font-weight: bold;
}

/* App Download Buttons */
.app-download-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 15px;
}

.app-download-btn {
    cursor: pointer;
    transition: opacity 0.2s;
    max-width: 140px;
    height: auto;
}

.app-download-btn:hover {
    opacity: 0.8;
}
