/* ==========================================================================
   DONATION PAGE STYLES
   ========================================================================== */

body {
    background-color: #030712;
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* HERO SECTION */
.donate-hero {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #0f172a 0%, #030712 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.donate-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    animation: fadeInDown 1s ease-out;
}

.donate-title span.purple-text {
    color: #a855f7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.donate-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
}

/* CARDS SECTION */
.donate-options-section {
    padding: 80px 10%;
}

.donate-header {
    text-align: center;
    margin-bottom: 50px;
}

.donate-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.donate-card {
    background: rgba(30, 41, 59, 0.4);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.donate-card.featured {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 30px rgba(168, 85, 247, 0.15);
}

.donate-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
}

.donate-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.donate-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #a855f7;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.tier-icon {
    font-size: 3rem;
    color: #a855f7;
    margin-bottom: 20px;
}

.donate-card h3 {
    font-size: 1.5rem;
    color: #f8fafc;
    margin-bottom: 10px;
}

.donate-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.donate-amount span {
    font-size: 1.2rem;
    color: #94a3b8;
}

.donate-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.donate-features li {
    padding: 10px 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.donate-features li i {
    color: #38bdf8;
    margin-right: 10px;
}

.donate-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: #a855f7;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #9333ea;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* PAYMENT METHODS */
.payment-methods {
    text-align: center;
    padding: 60px 10%;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.payment-methods h3 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 1.8rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icons i, .payment-icons img {
    font-size: 3rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #f8fafc;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .donate-card.featured {
        transform: scale(1);
    }
    .donate-card.featured:hover {
        transform: translateY(-10px);
    }
}