/**
 * Custom Support Series styles with Black and Gold theme
 */

/* Support button styling */
.support-series {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
}

.support-series .action_icon i {
    color: #D4AF37; /* Gold color */
}

.support-series .action_icon i:hover {
    color: #FFD700; /* Brighter gold on hover */
}

/* Support Modal Styling */
.support-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-modal.visible {
    opacity: 1;
    display: block;
}

.support-modal-content {
    position: relative;
    background-color: #121212; /* Dark background */
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.3s;
    overflow: hidden;
    border: 2px solid #D4AF37; /* Gold border */
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #D4AF37; /* Gold color */
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.support-modal-close:hover {
    color: #FFD700; /* Brighter gold on hover */
}

.support-modal-header {
    padding: 25px;
    background: #000000; /* Black background */
    border-bottom: 2px solid #D4AF37; /* Gold border */
    color: #D4AF37; /* Gold text */
    text-align: center;
}

.support-modal-header h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
    color: #D4AF37; /* Gold color */
}

.support-modal-header p {
    margin: 0;
    color: #D4AF37; /* Gold color */
    opacity: 0.8;
}

.support-options {
    padding: 25px;
    background-color: #121212; /* Dark background */
}

.support-option {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #1a1a1a; /* Slightly lighter black */
    border-radius: 6px;
    transition: all 0.2s;
    border: 1px solid #D4AF37; /* Gold border */
}

.support-option:hover {
    background-color: #222222; /* Even lighter black on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(212, 175, 55, 0.2); /* Gold shadow */
}

.support-option-icon {
    flex: 0 0 70px;
    text-align: center;
}

.support-option-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.support-option-info {
    flex: 1;
    padding: 0 15px;
}

.support-option-info h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #D4AF37; /* Gold color */
}

.support-option-info p {
    margin: 0;
    color: #cccccc; /* Light gray for better readability */
}

.support-option-action {
    flex: 0 0 80px;
    text-align: center;
}

.btn-support {
    display: inline-block;
    padding: 8px 15px;
    background: #D4AF37; /* Gold background */
    color: #000000; /* Black text */
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-support:hover {
    background: #FFD700; /* Brighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3); /* Gold shadow */
    color: #000000; /* Keep text black */
}

.crypto-address {
    display: flex;
    margin-top: 10px;
}

.crypto-address input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #D4AF37; /* Gold border */
    border-radius: 4px 0 0 4px;
    background-color: #1a1a1a; /* Dark background */
    color: #D4AF37; /* Gold text */
    font-size: 14px;
}

.copy-address {
    padding: 8px 12px;
    background-color: #D4AF37; /* Gold background */
    color: #000000; /* Black text */
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-address:hover {
    background-color: #FFD700; /* Brighter gold on hover */
}

.copy-address.copied {
    background-color: #28a745; /* Green for success */
}

.support-modal-footer {
    padding: 15px 25px;
    background-color: #000000; /* Black background */
    border-top: 1px solid #D4AF37; /* Gold border */
    text-align: center;
    color: #D4AF37; /* Gold text */
}

/* Responsive styles */
@media (max-width: 768px) {
    .support-modal-content {
        width: 90%;
        margin: 15% auto;
    }
    
    .support-option {
        flex-direction: column;
        text-align: center;
    }
    
    .support-option-icon {
        margin-bottom: 10px;
    }
    
    .support-option-info {
        margin-bottom: 15px;
        padding: 0;
    }
    
    .support-option-action {
        width: 100%;
    }
    
    .btn-support {
        display: block;
        width: 100%;
    }
    
    .crypto-address {
        flex-direction: column;
    }
    
    .crypto-address input {
        border-radius: 4px;
        margin-bottom: 8px;
    }
    
    .copy-address {
        border-radius: 4px;
    }
} 