/* Donate Section */
.Donate {
    padding: 8rem 2rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

/* Header section - separate tile */
.donate-header {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(157, 78, 221, 0.05));
    border: 2px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.donate-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shimmer 3s infinite;
}

.donate-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.donate-heading {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.donate-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured support panel - same width as others */
.featured-support {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(157, 78, 221, 0.08));
    border: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 25px 70px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.featured-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shimmer 5s infinite;
    z-index: -1;
}

.featured-support h3 {
    color: var(--primary-light);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-support p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Other donations section - no background, same width */
.other-donations {
    width: 100%;
}

/* Payment options container - same width */
.donate-methods-container {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08), rgba(157, 78, 221, 0.04));
    border: 1px solid rgba(138, 43, 226, 0.25);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.donate-methods-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: shimmer 5s infinite;
}

.donate-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.donate-method-small {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.donate-method-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donate-method-small:hover::before {
    opacity: 1;
}

.donate-method-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.25);
    border-color: var(--primary);
}

.method-icon-small {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.donate-method-small:hover .method-icon-small {
    color: var(--primary);
    transform: scale(1.1);
}

.donate-method-small h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.donate-btn-small {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.donate-btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.donate-btn-small:hover::before {
    left: 100%;
}

.donate-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Footer - same width */
.donate-footer {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.06), rgba(157, 78, 221, 0.03));
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.gratitude-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.gratitude-message i {
    font-size: 2rem;
    color: #ffd700;
    animation: sparkle 2s infinite;
}

.gratitude-message p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    max-width: 500px;
    line-height: 1.6;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .donate-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-heading {
        font-size: 2rem;
    }
    
    .Donate {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .donate-methods-grid {
        grid-template-columns: 1fr;
    }
}