
/* Buy VIP Button */
.btn-buy-vip {
    width: 100%;
    background: linear-gradient(135deg, var(--chile-red) 0%, var(--chile-blue) 100%);
    border: 2px solid var(--rock-gold);
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-buy-vip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border-color: var(--flame-orange);
}

.btn-buy-vip i {
    font-size: 1.1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(40, 20, 60, 0.98) 100%);
    border: 3px solid var(--rock-gold);
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 15px 60px rgba(255, 215, 0, 0.4);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.modal-header h3 {
    color: var(--rock-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.modal-header h3 i {
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--rock-gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.payment-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.payment-info h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-price {
    color: var(--rock-gold);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    width: 100%;
    background: linear-gradient(135deg, rgba(213, 43, 30, 0.3) 0%, rgba(0, 57, 166, 0.3) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-family: 'Oxanium', sans-serif;
}

.payment-option:hover {
    transform: translateY(-5px);
    border-color: var(--rock-gold);
    background: linear-gradient(135deg, rgba(213, 43, 30, 0.5) 0%, rgba(0, 57, 166, 0.5) 100%);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.payment-option i {
    font-size: 2.5rem;
    color: var(--rock-gold);
    margin-bottom: 0.5rem;
}

.payment-option span {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-option small {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.khipu-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.khipu-option:hover .khipu-logo {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

.manual-option:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: none;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .payment-info h4 {
        font-size: 1.1rem;
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
    
    .payment-option {
        padding: 1.2rem;
    }
    
    .payment-option span {
        font-size: 1rem;
    }
    
    .khipu-logo {
        height: 40px;
    }
}
