/* ==========================================================
   靓号商城 - 前台样式 (现代化重构版)
   ========================================================== */

/* 主题色彩变量 */
:root {
    --color-primary: #6366f1;
    --color-secondary: #8b5cf6;
    --color-accent: #ec4899;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* 等级色彩 */
    --color-legend: #fbbf24;
    --color-supreme: #a855f7;
    --color-premium: #3b82f6;
    --color-good: #22c55e;
    --color-normal: #9ca3af;
}

/* 全局优化 */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', system-ui, sans-serif;
    color: var(--color-gray-800);
    line-height: 1.6;
}

/* 主容器 */
.zll-shop {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页面背景 */
.zll-page-bg {
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 30%, #fff0f5 60%, #fef3c7 100%);
    min-height: 100vh;
    padding-bottom: 60px;
}

/* 头部区域 */
.zll-header {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 0 0 40px 40px;
    margin-bottom: 30px;
}

.zll-header-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #ec4899 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.zll-header-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 统计卡片 */
.zll-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.zll-stat-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.zll-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.zll-stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zll-stat-label {
    font-size: 1rem;
    color: var(--color-gray-500);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* 用户信息栏 */
.zll-user-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.zll-balance-badge {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.zll-balance-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.zll-promo-badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(239, 68, 68, 0.15) 100%);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--color-warning);
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}

/* 标签页切换 */
.zll-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.zll-tab {
    padding: 16px 36px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--color-gray-600);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.zll-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.zll-tab.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* 等级展示区 */
.zll-levels-section {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zll-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    text-align: center;
    margin-bottom: 35px;
}

.zll-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.zll-level-card {
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.zll-level-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.zll-level-card.legend {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: var(--color-legend);
}

.zll-level-card.supreme {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-color: var(--color-supreme);
}

.zll-level-card.premium {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-color: var(--color-premium);
}

.zll-level-card.good {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    border-color: var(--color-good);
}

.zll-level-card.normal {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.1) 0%, rgba(107, 114, 128, 0.1) 100%);
    border-color: var(--color-normal);
}

.zll-level-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.zll-level-card.legend .zll-level-icon {
    background: linear-gradient(135deg, var(--color-legend) 0%, #d97706 100%);
}

.zll-level-card.supreme .zll-level-icon {
    background: linear-gradient(135deg, var(--color-supreme) 0%, #7e22ce 100%);
}

.zll-level-card.premium .zll-level-icon {
    background: linear-gradient(135deg, var(--color-premium) 0%, #1d4ed8 100%);
}

.zll-level-card.good .zll-level-icon {
    background: linear-gradient(135deg, var(--color-good) 0%, #15803d 100%);
}

.zll-level-card.normal .zll-level-icon {
    background: linear-gradient(135deg, var(--color-normal) 0%, #4b5563 100%);
}

.zll-level-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.zll-level-card.legend .zll-level-name { color: #d97706; }
.zll-level-card.supreme .zll-level-name { color: #7e22ce; }
.zll-level-card.premium .zll-level-name { color: #1d4ed8; }
.zll-level-card.good .zll-level-name { color: #15803d; }
.zll-level-card.normal .zll-level-name { color: #4b5563; }

.zll-level-count {
    font-size: 0.875rem;
    color: var(--color-gray-500);
    margin-bottom: 12px;
}

.zll-level-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.zll-level-feature {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zll-level-feature::before {
    content: '✓';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: white;
}

.zll-level-card.legend .zll-level-feature::before { background: var(--color-legend); }
.zll-level-card.supreme .zll-level-feature::before { background: var(--color-supreme); }
.zll-level-card.premium .zll-level-feature::before { background: var(--color-premium); }
.zll-level-card.good .zll-level-feature::before { background: var(--color-good); }
.zll-level-card.normal .zll-level-feature::before { background: var(--color-normal); }

/* 筛选栏 */
.zll-filters-wrapper {
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zll-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.zll-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zll-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.zll-filter-select {
    padding: 12px 16px;
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    font-size: 0.9375rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.zll-filter-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.zll-search-wrapper {
    position: relative;
}

.zll-search-input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    font-size: 0.9375rem;
    outline: none;
    transition: all 0.2s ease;
}

.zll-search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.zll-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    font-size: 1rem;
}

/* 靓号网格 */
.zll-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* 靓号卡片 */
.zll-number-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
}

.zll-number-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.zll-number-card.legend { border-color: var(--color-legend); }
.zll-number-card.supreme { border-color: var(--color-supreme); }
.zll-number-card.premium { border-color: var(--color-premium); }
.zll-number-card.good { border-color: var(--color-good); }
.zll-number-card.normal { border-color: var(--color-normal); }

.zll-number-header {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.zll-number-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.zll-number-header.legend {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.zll-number-header.supreme {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
}

.zll-number-header.premium {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.zll-number-header.good {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.zll-number-header.normal {
    background: linear-gradient(135deg, #9ca3af 0%, #4b5563 100%);
}

.zll-number-body {
    padding: 36px 28px;
    text-align: center;
}

.zll-number-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.zll-number-uid {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 20px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zll-number-card.legend .zll-number-uid {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zll-number-card.supreme .zll-number-uid {
    background: linear-gradient(135deg, #7e22ce 0%, #a855f7 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zll-number-card.premium .zll-number-uid {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zll-number-card.good .zll-number-uid {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 50%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zll-number-card.normal .zll-number-uid {
    background: linear-gradient(135deg, #4b5563 0%, #9ca3af 50%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zll-number-desc {
    color: var(--color-gray-500);
    font-size: 1.125rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.zll-number-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-danger);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.zll-number-price small {
    font-size: 1rem;
    font-weight: 400;
}

.zll-number-btn {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
}

.zll-number-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.zll-number-btn:hover::before {
    left: 100%;
}

.zll-number-btn:hover {
    transform: scale(1.03);
}

.zll-number-btn:active {
    transform: scale(0.98);
}

.zll-number-btn.legend {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.zll-number-btn.supreme {
    background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.zll-number-btn.premium {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.zll-number-btn.good {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.zll-number-btn.normal {
    background: linear-gradient(135deg, #9ca3af 0%, #4b5563 100%);
    box-shadow: 0 4px 15px rgba(156, 163, 175, 0.4);
}

.zll-number-btn.sold {
    background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

/* 取消应用按钮 */
.zll-number-btn.zll-btn-cancel {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
}

.zll-number-btn.zll-btn-cancel:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
}

.zll-number-btn.sold:hover {
    transform: none;
}

.zll-active-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--color-success);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 空状态 */
.zll-empty-state {
    text-align: center;
    padding: 80px 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.zll-empty-icon {
    font-size: 5rem;
    color: var(--color-gray-300);
    margin-bottom: 20px;
}

.zll-empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 10px;
}

.zll-empty-desc {
    color: var(--color-gray-500);
    margin-bottom: 25px;
}

.zll-empty-action {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zll-empty-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* 加载更多 */
.zll-load-more {
    text-align: center;
    margin-top: 35px;
}

.zll-load-btn {
    padding: 15px 45px;
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.zll-load-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.zll-load-btn:active {
    transform: translateY(0);
}

.zll-load-more {
    position: relative;
    z-index: 10;
}

.zll-load-more-wrap {
    position: relative;
    z-index: 10;
}

button.zll-load-more {
    position: relative;
    z-index: 11;
    cursor: pointer;
    pointer-events: auto;
}

button.zll-load-more:hover {
    opacity: 0.9;
}

button.zll-load-more:active {
    transform: scale(0.98);
}

/* 特色区域 */
.zll-features-section {
    background: white;
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.zll-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.zll-feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, white 100%);
    transition: all 0.3s ease;
}

.zll-feature-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.zll-feature-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.zll-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.zll-feature-desc {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* FAQ区域 */
.zll-faq-section {
    background: var(--color-gray-50);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 40px;
}

.zll-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.zll-faq-item {
    background: white;
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.zll-faq-item:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.zll-faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 10px;
}

.zll-faq-answer {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* 回到顶部按钮 */
.zll-back-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.zll-back-top.show {
    opacity: 1;
    visibility: visible;
}

.zll-back-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(99, 102, 241, 0.5);
}

/* ============================================
   用户中心样式
   ============================================ */

.zll-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.zll-container {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.zll-user-info {
    margin-bottom: 30px;
}

.zll-balance {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 16px 28px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.zll-balance i {
    font-size: 1.25rem;
}

/* 用户中心标题 */
.zll-center-header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 24px;
}

.zll-center-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.zll-center-header p {
    font-size: 1.125rem;
    color: var(--color-gray-500);
    margin: 0;
}

/* ============================================
   弹窗组件 - 居中美化版
   ============================================ */

/* 弹窗遮罩层 */
.zll-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zll-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 弹窗主体 */
.zll-modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 480px;
    width: 92%;
    text-align: center;
    transform: scale(0.85) translateY(30px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.zll-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

.zll-modal-overlay.show .zll-modal-content {
    transform: scale(1) translateY(0);
}

/* 弹窗图标 */
.zll-modal-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 3rem;
    font-weight: bold;
    position: relative;
    animation: zll-icon-pulse 2s ease-in-out infinite;
}

@keyframes zll-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.zll-modal-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    z-index: -1;
    animation: zll-icon-ring 2s ease-in-out infinite;
}

@keyframes zll-icon-ring {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0; }
}

.zll-modal-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.zll-modal-icon.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.zll-modal-icon.confirm {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
}

/* 弹窗标题 */
.zll-modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* 弹窗描述 */
.zll-modal-desc {
    color: #64748b;
    font-size: 1.0625rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* 弹窗按钮组 */
.zll-modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* 弹窗按钮基础样式 */
.zll-modal-btn {
    padding: 16px 40px;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.zll-modal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.zll-modal-btn:active::before {
    width: 300px;
    height: 300px;
}

/* 主要按钮 */
.zll-modal-btn.primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.zll-modal-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.zll-modal-btn.primary:active {
    transform: translateY(-1px);
}

/* 次要按钮 */
.zll-modal-btn.secondary {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #475569;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zll-modal-btn.secondary:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateY(-2px);
}

/* ============================================
   Toast提示 - 居中美化版
   ============================================ */
.zll-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    padding: 20px 36px;
    border-radius: 20px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    z-index: 100000;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.zll-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.zll-toast.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.zll-toast.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.zll-toast.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.zll-toast.info {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* 分页组件 */
.zll-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.zll-page-item {
    padding: 10px 18px;
    background: white;
    border-radius: 10px;
    font-weight: 500;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid var(--color-gray-200);
}

.zll-page-item:hover:not(.active):not(.disabled) {
    background: var(--color-gray-50);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.zll-page-item.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: transparent;
}

.zll-page-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zll-numbers-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .zll-number-uid {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .zll-header {
        padding: 40px 20px 30px;
    }
    
    .zll-header-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .zll-header-subtitle {
        font-size: 1rem;
    }
    
    .zll-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .zll-stat-value {
        font-size: 1.75rem;
    }
    
    .zll-user-bar {
        justify-content: center;
    }
    
    .zll-tab {
        padding: 12px 22px;
        font-size: 0.875rem;
    }
    
    .zll-levels-section,
    .zll-features-section,
    .zll-faq-section {
        padding: 25px;
    }
    
    .zll-levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zll-number-uid {
        font-size: 2.25rem;
        letter-spacing: 2px;
    }
    
    .zll-number-body {
        padding: 20px;
    }
    
    .zll-number-price {
        font-size: 1.5rem;
    }
    
    .zll-filters-grid {
        grid-template-columns: 1fr;
    }
    
    .zll-back-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .zll-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .zll-tab {
        padding: 10px 18px;
        font-size: 0.8125rem;
    }
    
    .zll-levels-grid {
        grid-template-columns: 1fr;
    }
    
    .zll-numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .zll-number-uid {
        font-size: 2rem;
    }
    
    .zll-features-grid {
        grid-template-columns: 1fr;
    }
    
    .zll-modal-content {
        padding: 25px;
    }
}