/* ============================================
   阳光竞彩足球 - 全局样式表
   版本: 1.0.0 | 服务器: 107.175.53.202
   ============================================ */

:root {
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --primary-pink: #ec4899;
    --bg-dark: #0a0e1a;
    --bg-card: rgba(15, 23, 42, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --vip-gold: #fbbf24;
    --border-color: rgba(59, 130, 246, 0.1);
    --font-sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--bg-dark); color: var(--text-primary); line-height: 1.6; min-height: 100vh; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.gradient-text { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--primary-pink) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glass-panel { background: var(--bg-card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-color); border-radius: 1rem; }
.card-hover { transition: all var(--transition); cursor: pointer; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(59, 130, 246, 0.3); border-color: rgba(59, 130, 246, 0.3); }
.vip-lock { background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%); border: 1px solid rgba(251, 191, 36, 0.2); position: relative; overflow: hidden; }

.odds-up { color: var(--success); animation: pulse-green 2s infinite; font-weight: 700; }
.odds-down { color: var(--danger); animation: pulse-red 2s infinite; font-weight: 700; }
.probability-bar { background: linear-gradient(90deg, #1e293b 0%, #334155 100%); border-radius: 9999px; overflow: hidden; height: 8px; }
.probability-fill { height: 100%; border-radius: 9999px; transition: width 1s ease-out; box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }

.ticker { display: flex; animation: ticker 30s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse-green { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes pulse-red { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

.top-banner { background: linear-gradient(90deg, rgba(30, 58, 138, 0.4), rgba(88, 28, 135, 0.4), rgba(190, 24, 93, 0.4)); border-bottom: 1px solid rgba(59, 130, 246, 0.2); overflow: hidden; position: relative; }
.header { background: var(--bg-card); backdrop-filter: blur(12px); border-bottom: 1px solid #1e293b; position: sticky; top: 0; z-index: 50; }
.nav-link { color: var(--text-secondary); font-size: 0.875rem; font-weight: 500; transition: color 0.15s ease; text-decoration: none; }
.nav-link:hover { color: var(--text-primary); }
.nav-link-vip { color: var(--vip-gold); }
.nav-link-vip:hover { color: #fcd34d; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 600; font-size: 0.875rem; transition: all var(--transition); cursor: pointer; border: none; outline: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple)); color: white; box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6); }
.btn-vip { background: linear-gradient(135deg, var(--vip-gold), #f97316); color: #0f172a; box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4); }
.btn-vip:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6); }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-secondary); }
.btn-outline:hover { border-color: var(--primary-blue); color: var(--primary-blue); background: rgba(59, 130, 246, 0.1); }

.input { width: 100%; background: #1e293b; border: 1px solid #334155; border-radius: 0.5rem; padding: 0.75rem 1rem; color: var(--text-primary); font-size: 0.875rem; transition: all 0.15s ease; }
.input:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.input::placeholder { color: #64748b; }

.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; }
.badge-green { background: rgba(16, 185, 129, 0.2); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-blue { background: rgba(59, 130, 246, 0.2); color: var(--primary-blue); border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-gold { background: rgba(251, 191, 36, 0.2); color: var(--vip-gold); border: 1px solid rgba(251, 191, 36, 0.3); }

.hero { position: relative; padding: 5rem 0; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15), transparent 70%); pointer-events: none; }

.data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
@media (max-width: 640px) { .data-grid { grid-template-columns: 1fr; gap: 1rem; } }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.active { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(4px); }
.modal-content { position: relative; background: var(--bg-card); border: 1px solid #334155; border-radius: 1rem; padding: 2rem; max-width: 28rem; width: 100%; max-height: 90vh; overflow-y: auto; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.flex { display: flex; } .flex-col { flex-direction: column; } .items-center { align-items: center; } .justify-center { justify-content: center; } .justify-between { justify-content: space-between; } .flex-1 { flex: 1; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-8 { gap: 2rem; }
.hidden { display: none; } .relative { position: relative; } .absolute { position: absolute; } .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.text-center { text-align: center; } .text-white { color: #ffffff; } .text-slate-400 { color: #94a3b8; } .text-slate-500 { color: #64748b; } .text-blue-400 { color: #60a5fa; } .text-amber-400 { color: #fbbf24; }
.text-xs { font-size: 0.75rem; } .text-sm { font-size: 0.875rem; } .text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; } .font-semibold { font-weight: 600; } .font-medium { font-weight: 500; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; } .py-4 { padding-top: 1rem; padding-bottom: 1rem; } .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; } .p-4 { padding: 1rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.rounded-lg { border-radius: 0.5rem; } .rounded-xl { border-radius: 0.75rem; } .rounded-2xl { border-radius: 1rem; } .rounded-full { border-radius: 9999px; }
.border { border-width: 1px; } .border-t { border-top-width: 1px; } .border-b { border-bottom-width: 1px; } .border-slate-800 { border-color: #1e293b; } .border-slate-700 { border-color: #334155; }
.bg-slate-900\/50 { background-color: rgba(15, 23, 42, 0.5); } .bg-slate-800\/50 { background-color: rgba(30, 41, 59, 0.5); } .bg-slate-950 { background-color: #020617; }
.bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.1); } .bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); } .bg-blue-600 { background-color: #2563eb; }
.bg-green-500\/20 { background-color: rgba(16, 185, 129, 0.2); } .bg-yellow-500\/20 { background-color: rgba(234, 179, 8, 0.2); } .bg-red-500\/20 { background-color: rgba(239, 68, 68, 0.2); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); } .bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); } .from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } .to-purple-600 { --tw-gradient-to: #9333ea; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); } .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } @keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.blur-sm { filter: blur(4px); } .opacity-50 { opacity: 0.5; } .select-none { user-select: none; } .pointer-events-none { pointer-events: none; }
.whitespace-nowrap { white-space: nowrap; } .overflow-hidden { overflow: hidden; } .overflow-y-auto { overflow-y: auto; }
.max-w-3xl { max-width: 48rem; } .max-w-md { max-width: 28rem; } .max-h-90vh { max-height: 90vh; } .min-h-screen { min-height: 100vh; }
.tracking-tight { letter-spacing: -0.025em; } .leading-tight { line-height: 1.25; } .leading-relaxed { line-height: 1.625; }
