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

.vip-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.vip-modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    padding: 20px;
    max-width: 450px;
    width: 90%;
    max-height: 70vh;
    overflow-y: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid #ffd700;
    animation: slideInUp 0.4s ease;
}

.vip-modal-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffd700;
}

.vip-modal-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.vip-crown {
    font-size: 30px;
    color: #ffd700;
    margin-bottom: 8px;
    animation: crownBounce 2s ease-in-out infinite;
}

.vip-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.vip-service {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    color: #2c3e50;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.vip-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.service-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.service-price {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 3px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.vip-contact {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
}

.payment-methods {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.payment-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.payment-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-method {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: bold;
}

.vip-close {
    position: absolute;
    z-index: 1000;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.vip-close:hover {
    background: #c0392b;
    transform: rotate(90deg);
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes crownBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .vip-modal-content {
        padding: 15px;
        margin: 15px;
        max-width: 95%;
    }
    
    .vip-services {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .vip-service {
        padding: 12px;
    }
    
    .payment-list {
        flex-direction: column;
        align-items: center;
    }
}
