/* Donation Modal Styles */
.donation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.donation-card {
    background: var(--bg-card, #151520);
    border: 1px solid var(--accent-gold, #d4a855);
    border-radius: 12px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 0 40px rgba(212, 168, 85, 0.15);
}

.donation-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary, #a09882);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.donation-close:hover {
    color: var(--neon-pink, #ff2d95);
}

.donation-title {
    font-family: 'Space Mono', monospace;
    color: var(--accent-gold, #d4a855);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.donation-subtitle {
    color: var(--text-secondary, #a09882);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.donation-field {
    margin-bottom: 16px;
}

.donation-field label {
    display: block;
    color: var(--text-secondary, #a09882);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-family: 'Space Mono', monospace;
}

.donation-field input,
.donation-field textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-primary, #e8e0d4);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.donation-field input:focus,
.donation-field textarea:focus {
    outline: none;
    border-color: var(--accent-gold, #d4a855);
}

.donation-field textarea {
    resize: vertical;
    min-height: 50px;
}

#card-element {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: border-color 0.2s;
}

#card-element.StripeElement--focus {
    border-color: var(--accent-gold, #d4a855);
}

.donation-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-gold, #d4a855);
    color: #0a0a0f;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.donation-btn:hover {
    background: #e8bc6a;
    box-shadow: 0 0 20px rgba(212, 168, 85, 0.4);
}

.donation-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.donation-disclaimer {
    text-align: center;
    color: var(--text-secondary, #a09882);
    font-size: 0.75rem;
    margin-top: 12px;
    font-style: italic;
}

.donation-status {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    min-height: 20px;
}

.donation-status.success {
    color: var(--neon-green, #39ff14);
}

.donation-status.error {
    color: var(--neon-pink, #ff2d95);
}
