/* Extracted from donate.html inline <style> during Vite migration */
/* QR Code Container */
    .qr-container {
        max-width: 600px;
        margin: 0 auto 3rem;
    }
    
    .qr-instruction {
        margin-bottom: 2rem;
    }
    
    .qr-instruction p {
        font-size: 1.1rem;
        color: #fff;
        opacity: 0.9;
    }
    
    /* QR Code Display */
    .qr-code-display {
        width: 300px;
        height: 300px;
        margin: 0 auto 2.5rem;
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .qr-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 8px;
    }
    
    /* Account Address */
    .account-address {
        margin-top: 2rem;
    }
    
    .address-label {
        color: #fff;
        opacity: 0.8;
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }
    
    .address-box {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 1rem 1.5rem;
        margin: 1rem auto;
        max-width: 500px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    #crypto-address {
        color: #c0bebc;
        font-family: 'Courier New', monospace;
        font-size: 0.95rem;
        word-break: break-all;
        margin-right: 1rem;
    }
    
    .copy-address-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        color: #fff;
        padding: 0.5rem 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
    }
    
    .copy-address-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .address-note {
        color: #fff;
        opacity: 0.6;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    /* Donation Barometer */
    .donation-barometer {
        max-width: 700px;
        margin: 0 auto;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .barometer-header {
        margin-bottom: 1.5rem;
    }
    
    .barometer-header h3 {
        color: #fff;
        margin-bottom: 0.5rem;
        font-size: 1.4rem;
    }
    
    .barometer-stats {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .current-amount {
        color: #c0bebc;
    }
    
    .target-amount {
        opacity: 0.8;
    }
    
    .divider {
        margin: 0 0.5rem;
        opacity: 0.5;
    }
    
    /* Barometer Gauge */
    .barometer-gauge {
        margin: 2rem 0;
    }
    
    .gauge-track {
        height: 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 0.5rem;
    }
    
    .gauge-fill {
        height: 100%;
        background: linear-gradient(90deg, #fa821d, #ff9e4a);
        border-radius: 6px;
        transition: width 1.5s ease;
    }
    
    .gauge-labels {
        display: flex;
        justify-content: space-between;
        color: #fff;
        opacity: 0.7;
        font-size: 0.9rem;
    }
    
    .gauge-current {
        color: #fa821d;
        font-weight: 600;
    }
    
    .barometer-footer {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .barometer-footer p {
        color: #fff;
        opacity: 0.8;
        font-size: 0.95rem;
    }
    
    .barometer-footer i {
        color: #fa821d;
        margin-right: 0.5rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .qr-code-display {
            width: 250px;
            height: 250px;
        }
        
        .address-box {
            flex-direction: column;
            padding: 1rem;
        }
        
        #crypto-address {
            margin-right: 0;
            margin-bottom: 1rem;
        }
        
        .donation-barometer {
            padding: 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .qr-code-display {
            width: 220px;
            height: 220px;
        }
        
        .barometer-stats {
            font-size: 1rem;
        }
    }
