/* ==================== VIP Dashboard Module Styles - 精致尊贵版 ==================== */

.vip-container {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ==================== VIP卡片基础样式 ==================== */
.vip-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* 背景层 */
.vip-card-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vip-gradient, .vip-particles, .vip-shimmer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* 内容层 */
.vip-card-content {
    position: relative;
    z-index: 1;
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ==================== 月度会员样式 - 渐变紫蓝 ==================== */
.vip-card[data-tier="1month"],
.vip-card[data-tier="standard"] {
    background: linear-gradient(135deg, 
        #1e293b 0%, 
        #334155 50%,
        #475569 100%);
    border: 1px solid rgba(100, 116, 139, 0.4);
    box-shadow: 
        0 10px 40px rgba(100, 116, 139, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ==================== 试用版样式 - 橙色警示 ==================== */
.vip-card[data-tier="trial"] {
    background: linear-gradient(135deg, 
        #431407 0%, 
        #7c2d12 40%,
        #c2410c 70%,
        #ea580c 100%);
    border: 1px solid rgba(249, 115, 22, 0.5);
    box-shadow: 
        0 10px 40px rgba(249, 115, 22, 0.25),
        0 0 60px rgba(249, 115, 22, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: trialGlow 3s ease-in-out infinite;
}

.vip-card[data-tier="trial"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(251, 146, 60, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.vip-card[data-tier="trial"] .vip-gradient {
    background: radial-gradient(circle at top right, rgba(251, 146, 60, 0.2) 0%, transparent 50%);
}

.vip-card[data-tier="trial"] .vip-icon {
    font-size: 1.4em;
    filter: drop-shadow(0 0 10px rgba(251, 146, 60, 0.9));
    animation: trialIconGlow 1.5s ease-in-out infinite;
}

.vip-card[data-tier="trial"] .vip-title {
    color: #fed7aa;
    font-size: 1.15em;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(251, 146, 60, 0.6);
    letter-spacing: 0.5px;
}

.vip-card[data-tier="trial"] .vip-badge {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #431407;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.5);
}

.vip-card[data-tier="trial"] .vip-subtitle {
    color: rgba(254, 215, 170, 0.9);
    font-size: 11px;
    font-weight: 500;
}

.vip-card[data-tier="trial"] .status-label,
.vip-card[data-tier="trial"] .date-label,
.vip-card[data-tier="trial"] .machine-label {
    color: rgba(255, 237, 213, 0.8);
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="trial"] .status-value,
.vip-card[data-tier="trial"] .status-text,
.vip-card[data-tier="trial"] .date-value,
.vip-card[data-tier="trial"] .machine-value {
    color: #fff7ed;
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="trial"] .vip-status-row,
.vip-card[data-tier="trial"] .vip-date-row,
.vip-card[data-tier="trial"] .vip-machine-row {
    border-bottom-color: rgba(251, 146, 60, 0.2);
    padding: 6px 0;
}

.vip-card[data-tier="1month"] .vip-icon,
.vip-card[data-tier="standard"] .vip-icon {
    font-size: 1.4em;
    filter: drop-shadow(0 2px 6px rgba(100, 116, 139, 0.6));
}

.vip-card[data-tier="1month"] .vip-title,
.vip-card[data-tier="standard"] .vip-title {
    color: #e2e8f0;
    font-size: 1.1em;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.vip-card[data-tier="1month"] .vip-badge,
.vip-card[data-tier="standard"] .vip-badge {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.4), rgba(100, 116, 139, 0.2));
    color: #e2e8f0;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(100, 116, 139, 0.5);
    backdrop-filter: blur(4px);
}

.vip-card[data-tier="1month"] .vip-subtitle,
.vip-card[data-tier="standard"] .vip-subtitle {
    color: rgba(226, 232, 240, 0.8);
    font-size: 11px;
    font-weight: 500;
}

.vip-card[data-tier="1month"] .status-label,
.vip-card[data-tier="1month"] .date-label,
.vip-card[data-tier="1month"] .machine-label,
.vip-card[data-tier="standard"] .status-label,
.vip-card[data-tier="standard"] .date-label,
.vip-card[data-tier="standard"] .machine-label {
    color: rgba(226, 232, 240, 0.7);
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="1month"] .status-value,
.vip-card[data-tier="1month"] .status-text,
.vip-card[data-tier="1month"] .date-value,
.vip-card[data-tier="1month"] .machine-value,
.vip-card[data-tier="standard"] .status-value,
.vip-card[data-tier="standard"] .status-text,
.vip-card[data-tier="standard"] .date-value,
.vip-card[data-tier="standard"] .machine-value {
    color: #f1f5f9;
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="1month"] .vip-status-row,
.vip-card[data-tier="1month"] .vip-date-row,
.vip-card[data-tier="1month"] .vip-machine-row,
.vip-card[data-tier="standard"] .vip-status-row,
.vip-card[data-tier="standard"] .vip-date-row,
.vip-card[data-tier="standard"] .vip-machine-row {
    border-bottom-color: rgba(100, 116, 139, 0.2);
    padding: 6px 0;
}

/* ==================== 高级版样式 - 翡翠绿 ==================== */
.vip-card[data-tier="advanced"] {
    background: linear-gradient(135deg, 
        #064e3b 0%, 
        #065f46 40%,
        #047857 70%,
        #059669 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 10px 40px rgba(16, 185, 129, 0.25),
        0 0 60px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: emeraldGlow 4s ease-in-out infinite;
}

.vip-card[data-tier="advanced"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vip-card[data-tier="advanced"] .vip-gradient {
    background: radial-gradient(circle at top right, rgba(52, 211, 153, 0.15) 0%, transparent 50%);
}

.vip-card[data-tier="advanced"] .vip-icon {
    font-size: 1.4em;
    filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.8));
    animation: emeraldIconGlow 2s ease-in-out infinite;
}

.vip-card[data-tier="advanced"] .vip-title {
    color: #6ee7b7;
    font-size: 1.15em;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
    letter-spacing: 0.5px;
}

.vip-card[data-tier="advanced"] .vip-badge {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #064e3b;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.4);
}

.vip-card[data-tier="advanced"] .vip-subtitle {
    color: rgba(167, 243, 208, 0.9);
    font-size: 11px;
    font-weight: 500;
}

.vip-card[data-tier="advanced"] .status-label,
.vip-card[data-tier="advanced"] .date-label,
.vip-card[data-tier="advanced"] .machine-label {
    color: rgba(209, 250, 229, 0.8);
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="advanced"] .status-value,
.vip-card[data-tier="advanced"] .status-text,
.vip-card[data-tier="advanced"] .date-value,
.vip-card[data-tier="advanced"] .machine-value {
    color: #ecfdf5;
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="advanced"] .vip-status-row,
.vip-card[data-tier="advanced"] .vip-date-row,
.vip-card[data-tier="advanced"] .vip-machine-row {
    border-bottom-color: rgba(52, 211, 153, 0.2);
    padding: 6px 0;
}

/* ==================== 专业版样式 - 宝石蓝紫 ==================== */
.vip-card[data-tier="professional"] {
    background: linear-gradient(135deg, 
        #1e1b4b 0%, 
        #312e81 40%,
        #4338ca 70%,
        #4f46e5 100%);
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 10px 40px rgba(99, 102, 241, 0.3),
        0 0 60px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: sapphireGlow 4s ease-in-out infinite;
}

.vip-card[data-tier="professional"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.vip-card[data-tier="professional"] .vip-gradient {
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.vip-card[data-tier="professional"] .vip-icon {
    font-size: 1.4em;
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.9));
    animation: sapphireIconGlow 2s ease-in-out infinite;
}

.vip-card[data-tier="professional"] .vip-title {
    color: #a5b4fc;
    font-size: 1.15em;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #c4b5fd, #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-card[data-tier="professional"] .vip-badge {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: #1e1b4b;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.5);
}

.vip-card[data-tier="professional"] .vip-subtitle {
    color: rgba(196, 181, 253, 0.9);
    font-size: 11px;
    font-weight: 500;
}

.vip-card[data-tier="professional"] .status-label,
.vip-card[data-tier="professional"] .date-label,
.vip-card[data-tier="professional"] .machine-label {
    color: rgba(224, 231, 255, 0.8);
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="professional"] .status-value,
.vip-card[data-tier="professional"] .status-text,
.vip-card[data-tier="professional"] .date-value,
.vip-card[data-tier="professional"] .machine-value {
    color: #eef2ff;
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="professional"] .vip-status-row,
.vip-card[data-tier="professional"] .vip-date-row,
.vip-card[data-tier="professional"] .vip-machine-row {
    border-bottom-color: rgba(139, 92, 246, 0.2);
    padding: 6px 0;
}

.vip-card[data-tier="professional"] .vip-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

/* ==================== 至尊版样式 - 黑金尊贵 ==================== */
.vip-card[data-tier="permanent"],
.vip-card[data-tier="ultimate"] {
    background: linear-gradient(135deg, 
        #0a0a0f 0%, 
        #1a1a2e 40%,
        #16213e 70%,
        #0f0f1a 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.15),
        0 0 60px rgba(255, 215, 0, 0.05),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    animation: goldGlow 4s ease-in-out infinite;
}

.vip-card[data-tier="permanent"]::before,
.vip-card[data-tier="ultimate"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.vip-card[data-tier="permanent"] .vip-gradient,
.vip-card[data-tier="ultimate"] .vip-gradient {
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.vip-card[data-tier="permanent"] .vip-icon,
.vip-card[data-tier="ultimate"] .vip-icon {
    font-size: 1.4em;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    animation: iconGlow 2s ease-in-out infinite;
}

.vip-card[data-tier="permanent"] .vip-title,
.vip-card[data-tier="ultimate"] .vip-title {
    color: #FFD700;
    font-size: 1.2em;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-card[data-tier="permanent"] .vip-badge,
.vip-card[data-tier="ultimate"] .vip-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.vip-card[data-tier="permanent"] .vip-subtitle,
.vip-card[data-tier="ultimate"] .vip-subtitle {
    color: rgba(255, 215, 0, 0.8);
    font-size: 11px;
    font-weight: 500;
}

.vip-card[data-tier="permanent"] .status-label,
.vip-card[data-tier="permanent"] .date-label,
.vip-card[data-tier="permanent"] .machine-label,
.vip-card[data-tier="ultimate"] .status-label,
.vip-card[data-tier="ultimate"] .date-label,
.vip-card[data-tier="ultimate"] .machine-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="permanent"] .status-value,
.vip-card[data-tier="permanent"] .status-text,
.vip-card[data-tier="permanent"] .date-value,
.vip-card[data-tier="permanent"] .machine-value,
.vip-card[data-tier="ultimate"] .status-value,
.vip-card[data-tier="ultimate"] .status-text,
.vip-card[data-tier="ultimate"] .date-value,
.vip-card[data-tier="ultimate"] .machine-value {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 11px;
}

.vip-card[data-tier="permanent"] .vip-status-row,
.vip-card[data-tier="permanent"] .vip-date-row,
.vip-card[data-tier="permanent"] .vip-machine-row,
.vip-card[data-tier="ultimate"] .vip-status-row,
.vip-card[data-tier="ultimate"] .vip-date-row,
.vip-card[data-tier="ultimate"] .vip-machine-row {
    border-bottom-color: rgba(255, 215, 0, 0.1);
    padding: 6px 0;
}

.vip-card[data-tier="permanent"] .remaining-label,
.vip-card[data-tier="ultimate"] .remaining-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 600;
}

.vip-card[data-tier="permanent"] .remaining-value,
.vip-card[data-tier="ultimate"] .remaining-value {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.vip-card[data-tier="permanent"] .vip-remaining-days,
.vip-card[data-tier="ultimate"] .vip-remaining-days {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

.vip-card[data-tier="permanent"] .remaining-progress,
.vip-card[data-tier="ultimate"] .remaining-progress {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    border-radius: 4px;
}

.vip-card[data-tier="permanent"] .progress-bar,
.vip-card[data-tier="ultimate"] .progress-bar {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.vip-card[data-tier="permanent"] .vip-shimmer,
.vip-card[data-tier="ultimate"] .vip-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

/* ==================== 头部样式 ==================== */
.vip-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 8px;
}

.vip-icon-container {
    flex-shrink: 0;
}

.vip-title-section {
    flex: 1;
}

.vip-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.vip-badge {
    display: inline-block;
    margin-bottom: 4px;
}

.vip-title {
    margin: 0;
    line-height: 1.2;
}

.vip-subtitle {
    margin-top: 2px;
    font-size: 11px;
    opacity: 0.9;
}

/* ==================== 信息区域样式 ==================== */
.vip-info {
    margin-bottom: 6px;
    flex: 1;
}

.vip-status-row,
.vip-date-row,
.vip-machine-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}

.vip-machine-row {
    border-bottom: none;
}

.status-label,
.date-label,
.machine-label {
    font-weight: 600;
    font-size: 11px;
}

.status-value {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 4px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

.status-indicator.active-premium {
    background: #10B981;
    box-shadow: 0 0 4px rgba(16, 185, 129, 0.6);
}

.status-indicator.expired {
    background: #EF4444;
    box-shadow: 0 0 4px rgba(239, 68, 68, 0.6);
    animation: none;
}

.status-text,
.date-value,
.machine-value {
    font-size: 11px;
    font-weight: 600;
}

/* ==================== 剩余天数样式 ==================== */
.vip-remaining-days {
    margin-top: 8px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.remaining-label {
    font-size: 10px;
    margin-bottom: 4px;
    font-weight: 600;
}

.remaining-value {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 8px;
}

.remaining-progress {
    height: 5px;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ==================== 警告样式 ==================== */
.vip-warning {
    margin-top: 8px;
    padding: 8px 10px;
    background: rgba(239, 68, 68, 0.15);
    border-left: 2px solid #EF4444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vip-warning.urgent {
    background: rgba(245, 158, 11, 0.15);
    border-left-color: #F59E0B;
}

.vip-warning.critical {
    background: rgba(239, 68, 68, 0.2);
    border-left-color: #DC2626;
}

.warning-icon {
    font-size: 12px;
}

.warning-text {
    flex: 1;
    font-size: 10px;
    font-weight: 500;
    color: #FFFFFF;
}

/* ==================== 感谢信息样式 ==================== */
.vip-thank-you {
    margin-top: 8px;
    padding: 8px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    text-align: center;
}

.vip-card[data-tier="permanent"] .vip-thank-you {
    background: rgba(255, 215, 0, 0.08);
}

.thank-you-text {
    font-size: 10px;
    font-weight: 600;
    color: #FFD700;
}

/* ==================== 错误卡片样式 ==================== */
.vip-error-card {
    background: rgba(17, 24, 39, 0.95);
    border-radius: 10px;
    padding: 16px 14px;
    text-align: center;
    border: 2px solid #EF4444;
}

.error-icon {
    font-size: 1.6em;
    margin-bottom: 8px;
}

.error-title {
    font-size: 1em;
    color: #F9FAFB;
    margin-bottom: 6px;
    font-weight: 600;
}

.error-message {
    color: #9CA3AF;
    margin-bottom: 12px;
    font-size: 11px;
}

.error-retry-btn {
    background: linear-gradient(135deg, #EF4444, #F87171);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.error-retry-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.4);
}

/* ==================== 动画 ==================== */
@keyframes goldGlow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15),
                    0 0 60px rgba(255, 215, 0, 0.05);
    }
    50% { 
        box-shadow: 0 10px 50px rgba(255, 215, 0, 0.25),
                    0 0 80px rgba(255, 215, 0, 0.1);
    }
}

@keyframes trialGlow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2),
                    0 0 60px rgba(249, 115, 22, 0.08);
    }
    50% { 
        box-shadow: 0 10px 50px rgba(249, 115, 22, 0.35),
                    0 0 80px rgba(249, 115, 22, 0.15);
    }
}

@keyframes trialIconGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(251, 146, 60, 0.9)); }
    50% { filter: drop-shadow(0 0 18px rgba(251, 146, 60, 1)); }
}

@keyframes emeraldGlow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2),
                    0 0 60px rgba(16, 185, 129, 0.08);
    }
    50% { 
        box-shadow: 0 10px 50px rgba(16, 185, 129, 0.3),
                    0 0 80px rgba(16, 185, 129, 0.15);
    }
}

@keyframes sapphireGlow {
    0%, 100% { 
        box-shadow: 0 10px 40px rgba(99, 102, 241, 0.25),
                    0 0 60px rgba(139, 92, 246, 0.1);
    }
    50% { 
        box-shadow: 0 10px 50px rgba(99, 102, 241, 0.35),
                    0 0 80px rgba(139, 92, 246, 0.2);
    }
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1)); }
}

@keyframes emeraldIconGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.8)); }
    50% { filter: drop-shadow(0 0 18px rgba(52, 211, 153, 1)); }
}

@keyframes sapphireIconGlow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.9)); }
    50% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 1)); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

/* ==================== 响应式 ==================== */
@media (max-width: 1200px) {
    .vip-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .vip-container {
        width: 100%;
        max-width: 100%;
    }
    
    .vip-card-content {
        padding: 12px;
    }
    
    .vip-header {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .vip-status-row,
    .vip-date-row,
    .vip-machine-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}
