html {
    background-color: #1E2337;
    margin: 0;
    padding: 0;
    transition: all 1s;
    height: 100%;
}

body {
    transition: all 0.5s;
    filter: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

#main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70vh;
}

#center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    text-align: center;
}

#title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
    padding-bottom: 0;
    font-weight: bold;
}

#subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
    color: #6c7ec9;
    margin-bottom: 40px;
}

.support-options {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
    width: 100%;
}

.support-section {
    padding: 30px;
    background-color: rgba(51, 51, 51, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.support-section:hover {
    background-color: rgba(51, 51, 51, 0.5);
}

.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;
    width: 100%;
}

.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);
    color: #ffffff;
}

.copy-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s;
    width: 100%;
    max-width: 200px;
}

.copy-btn:hover {
    background: #555;
    transition: all 0.5s;
}

/* 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;
}

.support-description s {
    color: #666;
}

.support-description b {
    color: #999;
}

.action-button {
    display: inline-block;
    background: #333;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.25s;
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.action-button:hover {
    background: #555;
    transition: all 0.5s;
    transform: scale(1.05);
}

/* Back Link */
.back-link {
    margin-top: 20px;
}

.back-link a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.5s;
    padding: 5px 10px;
}

.back-link a:hover {
    transform: scale(1.25, 1.25);
    color: #999;
    transition: all 0.15s;
}

/* Footer Styles */
.footer {
    background-color: #151927;
    padding: 20px 0;
    border-top: 1px solid #333;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.5s;
    font-size: 16px;
    padding: 5px 10px;
}

.footer-links a:hover {
    transform: scale(1.25, 1.25);
    color: #999;
    transition: all 0.15s;
}

.footer-links a.donation {
    color: #553;
    text-decoration: none;
    animation: donation-change 15s infinite linear;
    transition: all 1.5s;
    font-size: 16px;
    padding: 5px 10px;
    font-weight: normal;
}

.footer-links a.donation:hover {
    transform: scale(1.5, 1.5) rotate(3deg);
    animation: donation-change 1s infinite linear;
    color: gold;
    text-shadow: 0 0 10px gold;
    transition: all 0.3s;
}

@keyframes donation-change {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.footer-copyright {
    text-align: center;
    color: #444;
    font-size: 14px;
    margin: 0;
}

.footer-copyright p {
    margin: 0;
}

/* 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;
    }
}