/* ===========================
   HERO DONATION BOX - ULTRA PREMIUM
   =========================== */

.hero-donation-box {
    position: relative;
    max-width: 800px;
    margin: 1rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(11, 123, 188, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 2px solid rgba(11, 123, 188, 0.2);
    overflow: hidden;
    animation: fadeInScale 0.8s ease-out 0.5s both, floatSlow 6s ease-in-out infinite;
    transform: translateY(-20px);
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

.donation-box-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #0B7BBC, #2563eb, #8b5cf6, #0B7BBC);
    background-size: 400% 400%;
    border-radius: 30px;
    opacity: 0.6;
    filter: blur(20px);
    z-index: -1;
    animation: gradientShift 4s ease infinite;
}

.quick-donate-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-donate-header h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0B7BBC, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: glowText 3s ease-in-out infinite;
}

.donate-icon-left,
.donate-icon-right {
    width: 24px;
    height: 24px;
    stroke: #0B7BBC;
    animation: wiggle 2.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(11, 123, 188, 0.3));
}

.donate-icon-right {
    animation-delay: 0.3s;
}

.donation-motivation {
    text-align: center;
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Optimierte Schriftfarben für perfekte Lesbarkeit auf blauem Hintergrund */
.hero-subtitle,
.hero-subtitle-big,
.donation-motivation {
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    font-weight: 500 !important;
}

.quick-donate-header h3 {
    color: #1e293b !important;
    font-weight: 900 !important;
    text-shadow: none !important;
    background: linear-gradient(135deg, #0B7BBC, #2563eb) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-amount-btn .amount-desc {
    color: #475569 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

.hero-amount-btn .amount-value {
    color: #1e293b !important;
    font-weight: 800 !important;
}

.trust-badges-hero .trust-badge {
    color: #10b981 !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

.hero-custom-amount label {
    color: #475569 !important;
    font-weight: 600 !important;
}
.hero-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.hero-amount-btn {
    position: relative;
    padding: 1.75rem 1rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 3px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-amount-btn.shimmer {
    animation: wiggle 3s ease-in-out infinite;
}

.hero-amount-btn:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    border-color: #0B7BBC;
    box-shadow: 
        0 20px 40px rgba(11, 123, 188, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.hero-amount-btn.selected {
    transform: translateY(-15px) scale(1.1);
    border-color: #0B7BBC;
    background: linear-gradient(135deg, #0B7BBC, #2563eb);
    box-shadow: 
        0 25px 50px rgba(11, 123, 188, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-amount-btn.selected .amount-value,
.hero-amount-btn.selected .amount-desc,
.hero-amount-btn.selected .amount-icon {
    color: white;
}

.amount-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.hero-amount-btn:hover .amount-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.amount-icon-svg {
    width: 32px;
    height: 32px;
    stroke: #0B7BBC;
    stroke-width: 2;
    fill: none;
    display: block;
    animation: bounceEmoji 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(11, 123, 188, 0.2));
}

.hero-amount-btn:hover .amount-icon-svg {
    stroke: #2563eb;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.3));
}

.hero-amount-btn.selected .amount-icon-svg {
    stroke: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.amount-icon {
    font-size: 2.5rem;
    display: block;
    animation: bounceEmoji 2s ease-in-out infinite;
}

.amount-value {
    font-size: 2rem;
    font-weight: 900;
    color: #1e293b;
    display: block;
}

.amount-desc {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    display: block;
}

/* Popular Choice */
.popular-choice {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    animation: heartbeat 2s ease-in-out infinite;
}

.popular-choice:hover {
    border-color: #f59e0b;
    box-shadow: 
        0 20px 40px rgba(245, 158, 11, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.popular-flame {
    position: absolute;
    top: -15px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.5);
    animation: shake 3s ease-in-out infinite;
    z-index: 2;
}

/* Mega Hero */
.mega-hero {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
}

.mega-hero:hover {
    border-color: #8b5cf6;
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Custom Amount */
.hero-custom-amount {
    margin-bottom: 2rem;
}

.hero-custom-amount label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.hero-custom-amount label svg {
    color: #0B7BBC;
    animation: wiggle 2s ease-in-out infinite;
}

.hero-custom-amount input {
    width: 100%;
    padding: 1.5rem;
    border: 3px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.hero-custom-amount input:focus {
    outline: none;
    border-color: #0B7BBC;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(11, 123, 188, 0.1),
        0 10px 20px rgba(11, 123, 188, 0.2);
    transform: scale(1.02);
}

/* Hero PayPal Box */
.hero-paypal-box {
    margin-bottom: 1.75rem;
    padding: 2rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    border: 2px dashed #0B7BBC;
    min-height: 100px;
}

.paypal-loading-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: #0B7BBC;
    font-weight: 600;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top-color: #0B7BBC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Trust Badges Hero */
.trust-badges-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #10b981;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #065f46;
}

.trust-item-hero svg {
    flex-shrink: 0;
}

/* Badge & Text Effects */
.pulse-badge {
    animation: pulseBig 2s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(135deg, #0B7BBC, #2563eb, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.glow-text {
    animation: glowText 2s ease-in-out infinite;
}

.highlight-text {
    color: #0B7BBC;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #60a5fa;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.hero-subtitle-big {
    font-size: 1.4rem !important;
    line-height: 1.8 !important;
    margin-bottom: 3rem !important;
}

.emoji-bounce {
    display: inline-block;
    animation: bounceEmoji 2s ease-in-out infinite;
    font-size: 1.5em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-amount-btn {
        padding: 1.5rem 0.75rem;
    }

    .amount-icon {
        font-size: 2rem;
    }

    .amount-value {
        font-size: 1.5rem;
    }

    .hero-donation-box {
        padding: 2rem 1.5rem;
    }

    .quick-donate-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-amounts {
        grid-template-columns: 1fr;
    }

    .trust-badges-hero {
        flex-direction: column;
        gap: 0.75rem;
    }
}
