/* donate.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#center-container {
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

#title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

#subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.support-options {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.support-section {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Crypto Donation Styles */
.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qr-code {
    padding: 20px;
    background: white;
    border-radius: 10px;
    display: inline-block;
}

.qr-image {
    width: 200px;
    height: 200px;
    border-radius: 5px;
}

.wallet-address {
    text-align: center;
}

.address-label {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #cccccc;
}

.address {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    word-break: break-all;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.copy-btn {
    background: #0098EA;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #0078c2;
}

/* Divider */
.divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    margin: 20px 0;
}

/* Website Support Styles */
.website-support {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.support-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #cccccc;
    flex: 1;
}

.action-button {
    display: inline-block;
    background: #00ea62;
    color: #000000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: auto;
}

.action-button:hover {
    background: #00c952;
    transform: translateY(-2px);
}

/* Back Link */
.back-link {
    margin-top: 20px;
}

.back-link a {
    color: #0098EA;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #00ea62;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0098EA;
}

.footer-links a.donation {
    color: #00ea62;
}

.footer-links a.donation:hover {
    color: #00c952;
}

.footer-copyright {
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-options {
        flex-direction: column;
        gap: 30px;
    }
    
    .divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    }
    
    #title {
        font-size: 2.2rem;
    }
    
    .support-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .qr-image {
        width: 150px;
        height: 150px;
    }
}