/* ===================================
   Support Modal
   ULTRA-STABLE SCROLLING VERSION
   =================================== */

/* Modal Overlay */
.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    
    /* WICHTIG FÜR SCROLLEN */
    display: none; 
    overflow-y: scroll; /* Erzwingt Scroll-Möglichkeit */
    -webkit-overflow-scrolling: touch;
    padding: 40px 10px; /* Platz für mobiles Scrollen */
}

.support-modal.active {
    display: block; /* Block statt Flex für stabiles Scrollen */
    opacity: 1;
}

/* Modal Container */
.support-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto; /* Zentriert horizontal */
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.support-modal.active .support-modal-content {
    opacity: 1;
    transform: translateY(0);
}

/* Close Button */
.support-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.support-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Header */
.support-header {
    text-align: center;
    margin-bottom: 30px;
}

.support-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.support-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.support-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Support Options */
.support-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.support-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.support-option-header h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

/* PayPal Area */
#paypal-button-container {
    width: 100%;
    min-height: 150px;
    margin-top: 10px;
}

/* Bank Details */
.bank-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-label {
    font-size: 0.75rem;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
}

.bank-value-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bank-value {
    font-size: 0.9rem;
    font-family: 'Monaco', 'Consolas', monospace;
    color: #eee;
    word-break: break-all;
}

.copy-btn {
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    padding: 8px;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
}

/* Footer */
.support-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 600px) {
    .support-modal {
        padding: 20px 10px;
    }
    
    .support-modal-content {
        padding: 20px;
        border-radius: 15px;
    }
    
    .support-title {
        font-size: 1.4rem;
    }
}

/* Scrollbar Design */
.support-modal::-webkit-scrollbar {
    width: 8px;
}
.support-modal::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}