/* Support Page Styles */

.support-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: heartbeat 2s ease-in-out infinite;
}

.support-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.support-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.support-description {
    text-align: left;
}

.support-description .lead {
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-highlights {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.feature-highlights h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--dark-color);
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.feature-list li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.security-note {
    margin-top: 2rem;
}

.payment-method {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-title {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card-info, .crypto-info {
    margin-bottom: 1.5rem;
}

.card-label, .crypto-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.card-number-container, .crypto-address-container {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.card-number, .crypto-address {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--dark-color);
}

.card-number:focus, .crypto-address:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.copy-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 120px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.copy-btn.copied {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: white !important;
    min-width: 90px;
}

.important-message {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    text-align: center;
}

.important-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.important-title {
    color: #856404;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.important-text {
    color: #856404;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.gratitude-text {
    color: #856404;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Animations */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .support-hero {
        padding: 2rem 1.5rem;
    }
    
    .support-title {
        font-size: 2rem;
    }
    
    .support-subtitle {
        font-size: 1rem;
    }
    
    .support-icon {
        font-size: 3rem;
    }
    
    .feature-highlights {
        padding: 1.5rem;
    }
    
    .payment-method {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-title {
        font-size: 1.2rem;
    }
    
    .card-number-container, .crypto-address-container {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }
    
    .important-message {
        padding: 2rem 1.5rem;
    }
    
    .important-title {
        font-size: 1.5rem;
    }
    
    .important-text {
        font-size: 1rem;
    }
    
    .important-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: 1.5rem 1rem;
    }
    
    .support-title {
        font-size: 1.75rem;
    }
    
    .feature-highlights {
        padding: 1rem;
    }
    
    .payment-method {
        padding: 1rem;
    }
    
    .important-message {
        padding: 1.5rem 1rem;
    }
    
    .card-number, .crypto-address {
        font-size: 0.9rem;
    }
}

/* Toast customization */
.toast {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.toast-header {
    border-radius: 12px 12px 0 0;
    background: #d1ecf1;
    border-bottom: 1px solid #bee5eb;
}

.toast-body {
    font-weight: 500;
}