/**
 * Donation Modal Styles
 * Shared across all pages
 */

.donate-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    z-index: 999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 2% auto;
    padding: 30px;
    border: 2px solid #00d4ff;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.modal-scroll {
    overflow-y: auto;
    max-height: calc(90vh - 180px);
    padding-right: 10px;
}

.modal-scroll::-webkit-scrollbar {
    width: 8px;
}

.modal-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.modal-scroll::-webkit-scrollbar-thumb {
    background: #00d4ff;
    border-radius: 4px;
}

.modal-scroll::-webkit-scrollbar-thumb:hover {
    background: #00a8cc;
}

.wallet-tag {
    background: rgba(255, 100, 0, 0.1);
    border: 1px solid rgba(255, 100, 0, 0.3);
    padding: 8px;
    border-radius: 5px;
    margin-top: 8px;
    font-size: 0.9em;
    color: #ffa500;
}

.wallet-tag strong {
    color: #ff6600;
    font-family: monospace;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #00d4ff;
}

.crypto-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.crypto-option h4 {
    color: #00d4ff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 5px;
    word-break: break-all;
    font-family: monospace;
    font-size: 0.85em;
    color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.wallet-address:hover {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
}

.copy-btn {
    background: #00d4ff;
    color: #1a1a2e;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: #fff;
}
