/* Download Section Styles */
.download {
    padding: 80px 20px;
    background: var(--bg-light);
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.qr-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.qr-code {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    cursor: pointer;
    transition: transform 0.2s;
}

.qr-code:hover {
    transform: scale(1.05);
}

.qr-hint {
    color: var(--text-light);
    margin-bottom: 20px;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 30px auto 0;
}

details {
    margin-top: 30px;
    text-align: left;
    background: white;
    border-radius: 10px;
    padding: 20px;
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    padding: 10px;
    user-select: none;
}

summary:hover {
    color: var(--primary-dark);
}

.fingerprint {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.fingerprint strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.fingerprint code {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    word-break: break-all;
    display: block;
    color: var(--text-light);
    line-height: 1.8;
}

.instructions ol {
    margin: 20px 0 20px 20px;
}

.instructions li {
    margin: 10px 0;
    color: var(--text-light);
}

.security-notice {
    margin-top: 40px;
    padding: 30px;
    background: #e8f5e9;
    border-radius: 15px;
    border-left: 4px solid var(--success);
}

.security-notice h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.security-notice p {
    color: var(--text-light);
}
