/**
 * BlessTop 神圣升级确认模态框
 * 符合bless.top神秘魔法风格的付款界面
 */

/* 神秘动画关键帧 */
@keyframes sparkle-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 1; }
}

@keyframes title-glow {
    0% { 
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 192, 203, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 192, 203, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
}

/* 模态框遮罩层 - 神秘星空背景 */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 182, 193, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 192, 203, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 182, 193, 0.4), transparent),
        rgba(10, 10, 10, 0.95);
    background-repeat: repeat;
    background-size: 200px 100px;
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* 移除无限旋转动画，只保留淡入效果 */
}

.payment-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 神圣升级卡片 */
.payment-modal {
    background: 
        radial-gradient(600px 400px at 20% 10%, rgba(255, 215, 0, 0.08), transparent 50%),
        radial-gradient(800px 600px at 80% 30%, rgba(255, 182, 193, 0.12), transparent 60%),
        radial-gradient(1000px 800px at 50% 80%, rgba(255, 192, 203, 0.06), transparent 70%),
        linear-gradient(180deg, #1a0f14 0%, #0a0a0a 50%, #1a0f14 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(255, 192, 203, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transform: scale(0.8) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 10px;
}

.payment-modal-overlay.active .payment-modal {
    transform: scale(1) translateY(0);
}

/* 神圣头部 */
.payment-modal-header {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 192, 203, 0.1) 100%),
        rgba(26, 15, 20, 0.8);
    padding: 28px 24px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.payment-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 20px 20px, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(1px 1px at 60px 40px, rgba(255, 192, 203, 0.4), transparent),
        radial-gradient(1px 1px at 100px 20px, rgba(255, 215, 0, 0.5), transparent);
    background-size: 120px 60px;
    /* 移除无限动画，只保留静态效果 */
    pointer-events: none;
}

.payment-modal-title {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    color: #ffe8f4;
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0.5px;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 192, 203, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.4);
    /* 移除无限发光动画，保持静态发光效果 */
    position: relative;
    z-index: 1;
}

.payment-modal-subtitle {
    color: rgba(255, 232, 244, 0.8);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* 神圣内容区域 */
.payment-modal-content {
    padding: 28px 24px 24px;
    background: 
        radial-gradient(400px 300px at 50% 0%, rgba(255, 215, 0, 0.03), transparent 70%),
        rgba(26, 15, 20, 0.95);
    color: #ffdfe9;
    position: relative;
}

/* 神圣特性列表 */
.upgrade-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.upgrade-features li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 16px;
    color: rgba(255, 232, 244, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

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

.upgrade-features li:hover {
    color: #ffe8f4;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    transform: translateX(4px);
}

.upgrade-features li .icon {
    font-size: 20px;
    margin-right: 14px;
    width: 28px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    /* 移除无限脉冲动画，保持静态效果 */
}

@keyframes icon-pulse {
    0% { filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3)); }
    100% { filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5)); }
}

/* 神圣价格显示 */
.payment-price {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 192, 203, 0.15) 100%),
        rgba(26, 15, 20, 0.8);
    color: #ffe8f4;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    margin: 0 0 28px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.payment-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 30px 15px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 80px 25px, rgba(255, 192, 203, 0.3), transparent);
    background-size: 100px 40px;
    /* 移除无限动画，只保留静态效果 */
    pointer-events: none;
}

.payment-price-label {
    font-size: 14px;
    opacity: 0.8;
    margin: 0 0 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.payment-price-amount {
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 192, 203, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4);
    /* 移除无限发光动画，保持静态发光效果 */
    position: relative;
    z-index: 1;
}

@keyframes price-glow {
    0% { 
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 192, 203, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 192, 203, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
}

/* 神圣保护提示 */
.payment-security {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 192, 203, 0.05) 100%),
        rgba(26, 15, 20, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 232, 244, 0.7);
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.payment-security .icon {
    font-size: 18px;
    margin-right: 10px;
    color: #22c55e;
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.4));
}

/* 神圣按钮组 */
.payment-modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.payment-btn {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    letter-spacing: 0.3px;
}

.payment-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-btn-cancel {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(26, 15, 20, 0.8);
    color: rgba(255, 232, 244, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.payment-btn-cancel:hover:not(:disabled) {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%),
        rgba(26, 15, 20, 0.9);
    color: rgba(255, 232, 244, 0.9);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.payment-btn-confirm {
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 192, 203, 0.2) 100%),
        rgba(34, 197, 94, 0.8);
    color: #ffe8f4;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(34, 197, 94, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.payment-btn-confirm:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(34, 197, 94, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.3);
}

.payment-btn-confirm:active {
    transform: translateY(-1px);
}

/* 加载状态 */
.payment-btn-loading {
    position: relative;
    color: transparent !important;
}

.payment-btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    /* 移除无限旋转动画，保持静态效果 */
}

/* ========================================
   移动端响应式优化
   ======================================== */

/* 移动端基础优化 */
@media (max-width: 768px) {
    .payment-modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .payment-modal {
        width: 100%;
        max-width: none;
        max-height: calc(100vh - 40px);
        margin: 0;
        border-radius: 16px;
        transform: scale(0.9) translateY(20px);
    }
    
    .payment-modal-overlay.active .payment-modal {
        transform: scale(1) translateY(0);
    }
    
    /* 头部优化 */
    .payment-modal-header {
        padding: 20px 16px 16px;
    }
    
    .payment-modal-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    
    .payment-modal-subtitle {
        font-size: 14px;
        line-height: 1.3;
    }
    
    /* 内容区域优化 */
    .payment-modal-content {
        padding: 16px;
    }
    
    .upgrade-features {
        margin-bottom: 20px;
    }
    
    .upgrade-features li {
        padding: 12px 0;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .upgrade-features .feature-icon {
        font-size: 18px;
        margin-right: 12px;
        width: 24px;
    }
    
    /* 价格区域优化 */
    .payment-price {
        margin: 20px 0;
        padding: 16px;
    }
    
    .payment-price-label {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .payment-price-amount {
        font-size: 32px;
        line-height: 1.1;
    }
    
    /* 安全提示优化 */
    .payment-security {
        padding: 12px 16px;
        margin: 16px 0;
        font-size: 12px;
    }
    
    .payment-security .icon {
        font-size: 14px;
        margin-right: 8px;
    }
    
    /* 支付方式优化 */
    .payment-methods {
        margin: 16px 0;
        gap: 8px;
    }
    
    .payment-method-icon {
        width: 50px;
        height: 32px;
        font-size: 8px;
    }
    
    /* 按钮区域优化 */
    .payment-modal-actions {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        position: sticky;
        bottom: 0;
        background: rgba(26, 15, 20, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .payment-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .payment-btn-confirm {
        order: -1; /* 确认按钮在上方 */
    }
    
    /* 关闭按钮优化 */
    .payment-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
        line-height: 32px;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .payment-modal-overlay {
        padding: 5px;
        padding-top: 10px;
    }
    
    .payment-modal {
        max-height: calc(100vh - 20px);
        border-radius: 12px;
    }
    
    .payment-modal-header {
        padding: 16px 12px 12px;
    }
    
    .payment-modal-title {
        font-size: 20px;
    }
    
    .payment-modal-subtitle {
        font-size: 13px;
    }
    
    .payment-modal-content {
        padding: 12px;
    }
    
    .upgrade-features li {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .upgrade-features .feature-icon {
        font-size: 16px;
        margin-right: 10px;
        width: 20px;
    }
    
    .payment-price {
        margin: 16px 0;
        padding: 12px;
    }
    
    .payment-price-amount {
        font-size: 28px;
    }
    
    .payment-security {
        padding: 10px 12px;
        margin: 12px 0;
        font-size: 11px;
    }
    
    .payment-methods {
        margin: 12px 0;
        gap: 6px;
    }
    
    .payment-method-icon {
        width: 45px;
        height: 28px;
        font-size: 7px;
    }
    
    .payment-modal-actions {
        padding: 12px;
        gap: 10px;
    }
    
    .payment-btn {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 44px;
    }
}

/* 横屏模式优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .payment-modal-overlay {
        align-items: center;
        padding: 20px;
    }
    
    .payment-modal {
        max-height: 90vh;
        max-width: 500px;
        width: 100%;
    }
    
    .payment-modal-header {
        padding: 16px 20px 12px;
    }
    
    .payment-modal-title {
        font-size: 22px;
    }
    
    .payment-modal-content {
        padding: 16px 20px;
    }
    
    .upgrade-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .upgrade-features li {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .payment-modal-actions {
        flex-direction: row;
        padding: 12px 20px;
    }
    
    .payment-btn {
        flex: 1;
        padding: 12px 16px;
        font-size: 14px;
        min-height: 40px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .payment-modal {
        border-radius: 8px;
    }
    
    .payment-modal-header {
        padding: 12px 10px 10px;
    }
    
    .payment-modal-title {
        font-size: 18px;
    }
    
    .payment-modal-subtitle {
        font-size: 12px;
    }
    
    .payment-modal-content {
        padding: 10px;
    }
    
    .upgrade-features li {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .upgrade-features .feature-icon {
        font-size: 14px;
        margin-right: 8px;
        width: 18px;
    }
    
    .payment-price {
        margin: 12px 0;
        padding: 10px;
    }
    
    .payment-price-amount {
        font-size: 24px;
    }
    
    .payment-security {
        padding: 8px 10px;
        margin: 10px 0;
        font-size: 10px;
    }
    
    .payment-methods {
        margin: 10px 0;
        gap: 4px;
    }
    
    .payment-method-icon {
        width: 40px;
        height: 24px;
        font-size: 6px;
    }
    
    .payment-modal-actions {
        padding: 10px;
        gap: 8px;
    }
    
    .payment-btn {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 40px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .payment-btn {
        min-height: 48px;
        padding: 16px 24px;
    }
    
    .payment-modal-close {
        min-width: 44px;
        min-height: 44px;
    }
    
    .upgrade-features li {
        padding: 16px 0;
    }
}

/* 高分辨率屏幕优化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .payment-modal {
        border-width: 0.5px;
    }
    
    .payment-modal-close {
        border-width: 0.5px;
    }
}

/* 深色模式优化 */
@media (prefers-color-scheme: dark) {
    .payment-modal {
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.4),
            0 0 80px rgba(255, 192, 203, 0.3),
            0 8px 32px rgba(0, 0, 0, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* 减少动画偏好优化 */
@media (prefers-reduced-motion: reduce) {
    .payment-modal-overlay,
    .payment-modal,
    .payment-btn {
        transition: none;
    }
    
    .payment-modal-overlay.active .payment-modal {
        transform: none;
    }
}

@keyframes payment-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 神圣关闭按钮 */
.payment-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: none;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        rgba(26, 15, 20, 0.8);
    color: rgba(255, 232, 244, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.payment-modal-close:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%),
        rgba(26, 15, 20, 0.9);
    color: #ffe8f4;
    border-color: rgba(255, 215, 0, 0.4);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 响应式设计 */
@media (max-width: 480px) {
    .payment-modal {
        width: 95%;
        margin: 20px;
    }
    
    .payment-modal-header {
        padding: 20px 20px 16px;
    }
    
    .payment-modal-title {
        font-size: 20px;
    }
    
    .payment-modal-content {
        padding: 20px;
    }
    
    .payment-modal-actions {
        flex-direction: column;
    }
    
    .payment-btn {
        padding: 14px 20px;
    }
    
    .payment-price-amount {
        font-size: 28px;
    }
}

/* 动画效果 */
@keyframes payment-modal-fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes payment-modal-fadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
}

/* 成功状态 */
.payment-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: payment-success-bounce 0.6s ease-out;
}

@keyframes payment-success-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* 错误状态 */
.payment-error-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: payment-error-shake 0.6s ease-out;
}

@keyframes payment-error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* 神圣支付方式 */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    opacity: 0.8;
}

.payment-method-icon {
    width: 36px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 0 8px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    filter: brightness(0.9) saturate(0.8);
}

.payment-method-icon:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    filter: brightness(1.1) saturate(1.2);
}

/* 支付方式图标样式 */
.payment-method-visa {
    background: linear-gradient(135deg, #1a1f71 0%, #0052a5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 10px;
    letter-spacing: 0.5px;
}

.payment-method-visa::after {
    content: 'VISA';
}

.payment-method-mastercard {
    background: linear-gradient(135deg, #eb001b 0%, #ff5f00 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 8px;
    letter-spacing: 0.3px;
}

.payment-method-mastercard::after {
    content: 'Master';
}

.payment-method-alipay {
    background: linear-gradient(135deg, #00a1e9 0%, #0078d4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 9px;
    letter-spacing: 0.2px;
}

.payment-method-alipay::after {
    content: 'Alipay';
}

.payment-method-wechat {
    background: linear-gradient(135deg, #09b83e 0%, #07a33e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 9px;
    letter-spacing: 0.2px;
}

.payment-method-wechat::after {
    content: 'WeChat';
}
