.donation-container {
    max-width: 1100px;
    margin: 0 auto;
}

.donation-header {
    text-align: center;
    margin-bottom: 50px;
}

.donation-header h1 i {
    color: var(--accent-color);
}

.donation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.support-list {
    list-style: none;
    padding: 20px 0;
}

.support-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.support-list i {
    color: var(--accent-color);
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.paypal-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.btn-paypal {
    display: inline-block;
    background: #0070ba; /* PayPal Blau */
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.3s;
    margin-top: 15px;
}

.btn-paypal:hover {
    background: #005ea6;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 112, 186, 0.4);
}

.donor-list {
    margin-top: 15px;
}

.donor-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.donor-name {
    font-weight: bold;
    color: rgba(255,255,255,0.9);
}

.donor-amount {
    color: var(--accent-color);
}

/* Container für den Balken */
.progress-container {
    width: 100%;
    height: 35px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px #000;
    margin: 5px 5px;
}

/* Der eigentliche Balken */
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00f2fe 0%, var(--accent) 100%);
    box-shadow: 0 0 15px var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 1s ease-in-out;
    position: relative;
}

/* Der fixierte Text, der immer zentriert ist */
.progress-text-overlay {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    text-shadow: 0px 0px 8px #000;
    pointer-events: none; /* Klicks gehen durch den Text durch */
    z-index: 10;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.perk-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.perk-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .donation-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .donation-sidebar {
        order: 2; /* Sidebar nach unten */
    }
}