/* --- COMPACT VERTICAL FOOTER WITH TIGHT BULLETS --- */
footer {
    font-family: 'Barlow Semi Condensed', sans-serif;
    border-top: 1px solid var(--border-color);
    padding: 20px 10px !important;
    text-align: center;
    color: var(--text-secondary);
    margin-top: 20px;
}

footer > div {
    margin-bottom: 12px !important;
    font-size: 0.85rem;
}
footer code {
    font-family: monospace;
    color: #f06292 !important;
    background: rgba(240, 98, 146, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    
    /* Layout & Mobile Wrapping */
    display: inline-block;
    word-break: break-all;
    max-width: 90%;
    transition: background 0.2s ease;
}

/* Visual feedback when they hover or click */
footer code:hover {
    background: rgba(240, 98, 146, 0.15);
}

footer code:active {
    background: rgba(240, 98, 146, 0.3);
}
/* Rate Badge (Space Grotesk) */
.rate-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 4px 12px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin: 5px 0 !important;
}

#footer-rate {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent-euro);
    font-weight: 700;
}

/* Legal Disclaimer: Bullets next to items */
footer div[style*="margin: 20px auto"] {
    margin: 15px auto !important;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    max-width: 600px; /* Limits width to keep text centered */
    font-family: system-ui, sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
}

footer ul {
    list-style-type: disc;
    /* This moves the bullet from the far left to right next to the text */
    list-style-position: inside; 
    padding: 0 !important;
    margin: 10px 0 !important;
    display: block !important;
}

footer li {
    margin-bottom: 6px !important;
    text-align: center; /* Centers the bullet and text together */
    display: list-item !important;
}

/* Pulse Animation */
.pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.donation-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 450px;
    margin: 0 auto;
}

.freelance-tag {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.curation-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 4px 0 16px 0;
}

.address-container {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction:column;
}

.donation-address {
    background-color: var(--bg-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace; /* or your fallback mono */
    font-size: 0.85rem;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s;
}

.copy-btn:hover {
    opacity: 0.9;
}

/* Toast using your success/up green */
.toast-popup {
    visibility: hidden;
    background-color: var(--comm-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
}

.show-toast {
    visibility: visible;
    animation: fadeup 2.5s forwards;
}

@keyframes fadeup {
    0% { opacity: 0; transform: translate(-50%, 10px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -5px); }
}
