/* ==========================================
   奇门遁甲 VIP 高级自定义弹窗样式
========================================== */
.custom-vip-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px); /* 背景虚化，显得高端 */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-vip-overlay.active {
    display: flex;
    opacity: 1;
}

.custom-vip-card {
    background: #ffffff;
    width: 320px;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.custom-vip-overlay.active .custom-vip-card {
    transform: scale(1);
}

/* 顶部装饰条 */
.custom-vip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, #d4af37, #f3e5ab, #d4af37);
}

.custom-vip-icon {
    font-size: 40px;
    margin-bottom: 15px;
    line-height: 1;
}

.custom-vip-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.custom-vip-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 10px;
}

.custom-vip-desc strong {
    color: #d4af37; /* 强调文字用金色 */
}

.custom-vip-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.custom-vip-btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-cancel {
    background: #f0f2f5;
    color: #606266;
}

.btn-cancel:hover {
    background: #e4e7ed;
}

.btn-upgrade {
    background: linear-gradient(135deg, #e6c17a, #d4af37);
    color: #fff;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-upgrade:hover {
    background: linear-gradient(135deg, #d4af37, #c59b27);
    transform: translateY(-2px);
}