  :root { --primary: #e63946; --primary-dark: #c0392b; --primary-light: #ff6b6b; --bg-dark: #1a1a2e; --bg-card: #16213e; --bg-card-hover: #1f2b4a; --text-primary: #ffffff; --text-secondary: #a0a0b0; --text-muted: #6c6c7c; --accent-green: #00d26a; --accent-yellow: #ffc107; --accent-blue: #4361ee; --border-color: rgba(255,255,255,0.08); --safe-bottom: env(safe-area-inset-bottom, 0px); --safe-top: env(safe-area-inset-top, 0px); } * { -webkit-tap-highlight-color: transparent; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box; } html, body { margin: 0; padding: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg-dark); color: var(--text-primary); overflow-x: hidden; overscroll-behavior-y: auto; }  ::-webkit-scrollbar { display: none; }  .page-wrapper { min-height: 100vh; background: var(--bg-dark); padding-top: calc(56px + var(--safe-top)); padding-bottom: calc(70px + var(--safe-bottom)); overflow-y: auto; -webkit-overflow-scrolling: touch; }  .top-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: calc(56px + var(--safe-top)); padding-top: var(--safe-top); background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(26,26,46,0.98) 100%); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; padding-left: 16px; padding-right: 16px; } .navbar-brand-custom { font-size: 18px; font-weight: 800; color: var(--text-primary); text-decoration: none; display: flex; align-items: center; gap: 8px; } .brand-text { font-size: 18px; background: linear-gradient(135deg, var(--primary), #ff6b6b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .navbar-brand-custom .logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4); } .navbar-actions { display: flex; align-items: center; gap: 12px; } .nav-icon-btn { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-primary); font-size: 18px; position: relative; transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: pointer; text-decoration: none; } .nav-icon-btn:active { transform: scale(0.92); background: rgba(255,255,255,0.12); } .nav-icon-btn .badge-dot { position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; border: 2px solid var(--bg-dark); }  .bottom-tabbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; height: calc(60px + var(--safe-bottom)); padding-bottom: var(--safe-bottom); background: rgba(22, 33, 62, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-around; } .tab-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px 0; text-decoration: none; color: var(--text-muted); font-size: 10px; font-weight: 500; transition: all 0.2s ease; position: relative; } .tab-item .tab-icon { font-size: 22px; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); } .tab-item.active { color: var(--primary); } .tab-item.active .tab-icon { transform: scale(1.15) translateY(-2px); }  .tab-item::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(230, 57, 70, 0.15); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.4s ease, height 0.4s ease; } .tab-item:active::after { width: 60px; height: 60px; } .tab-item:active .tab-icon { transform: scale(0.88); }  .tab-badge { position: absolute; top: 2px; right: calc(50% - 18px); min-width: 16px; height: 16px; background: var(--primary); color: white; font-size: 10px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 4px; animation: badge-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); } @keyframes badge-pop { 0% { transform: scale(0); } 70% { transform: scale(1.2); } 100% { transform: scale(1); } } .match-card { background: var(--bg-card); border-radius: 16px; margin: 12px 0; overflow: hidden; border: 1px solid var(--border-color); transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); animation: card-enter 0.4s ease-out backwards; }@keyframes card-enter { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } } .match-card:active { transform: scale(0.97); border-color: rgba(230, 57, 70, 0.3); } .match-card:hover { border-color: rgba(230, 57, 70, 0.3); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }  .match-card-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px 10px; border-bottom: 1px solid var(--border-color); } .league-info { display: flex; align-items: center; gap: 8px; } .league-logo { width: 20px; height: 20px; border-radius: 50%; object-fit: contain; } .league-name { font-size: 12px; color: var(--text-secondary); font-weight: 500; } .match-time { font-size: 12px; color: var(--text-muted); font-weight: 500; }  .match-score-area { display: flex; align-items: center; justify-content: space-between; padding: 20px 16px 16px; } .team { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; } .team-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; background: rgba(255,255,255,0.05); transition: transform 0.3s ease; } .team-name { font-size: 13px; font-weight: 600; color: var(--text-primary); text-align: center; max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .score-center { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 80px; } .score-main { font-size: 32px; font-weight: 800; color: var(--text-primary); letter-spacing: 2px; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; } .score-main.goal-flash { animation: goal-flash 0.6s ease-out; } @keyframes goal-flash { 0% { transform: scale(1); color: var(--text-primary); } 30% { transform: scale(1.4); color: var(--accent-green); text-shadow: 0 0 20px var(--accent-green); } 100% { transform: scale(1); color: var(--text-primary); } } .score-sep { font-size: 24px; color: var(--text-muted); font-weight: 400; } .live-badge { background: linear-gradient(135deg, #ff4444, #cc0000); color: white; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.5px; animation: live-pulse 1.5s ease-in-out infinite; } @keyframes live-pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,68,68,0.4); } 50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(255,68,68,0); } } .vs-text { font-size: 20px; color: var(--text-muted); font-weight: 600; }  .odds-section { padding: 0 16px 16px; } .odds-tab-row { display: flex; gap: 6px; margin-bottom: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; } .odds-tab-row::-webkit-scrollbar { display: none; } .odds-tab { flex-shrink: 0; padding: 5px 12px; border-radius: 8px; font-size: 11px; font-weight: 600; background: rgba(255,255,255,0.06); color: var(--text-secondary); border: 1px solid var(--border-color); cursor: pointer; transition: all 0.2s ease; white-space: nowrap; } .odds-tab.active { background: var(--primary); color: white; border-color: var(--primary); } .odds-grid { display: flex; gap: 8px; flex-wrap: wrap; } .odds-btn { flex: 1; min-width: calc(33.33% - 6px); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 12px 8px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1.5px solid var(--border-color); cursor: pointer; transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);  -webkit-user-select: none; user-select: none; } .odds-btn:active { transform: scale(0.94); background: rgba(230, 57, 70, 0.15); border-color: var(--primary); } .odds-btn.selected { background: rgba(230, 57, 70, 0.15); border-color: var(--primary); } .odds-label { font-size: 11px; color: var(--text-secondary); margin-bottom: 4px; font-weight: 500; } .odds-value { font-size: 17px; font-weight: 700; color: var(--text-primary); } .odds-btn.selected .odds-value { color: var(--primary); }  .float-bet-btn { position: fixed; bottom: calc(75px + var(--safe-bottom)); right: 16px; z-index: 999; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border: none; border-radius: 50%; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5); transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration: none; } .float-bet-btn:active { transform: scale(0.9); } .float-bet-btn .float-badge { position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; background: var(--accent-yellow); color: #1a1a2e; font-size: 11px; font-weight: 800; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 0 5px; animation: badge-pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }  .page-content { position: relative; z-index: 1; }  .page-slide-enter-active, .page-slide-leave-active { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } .page-slide-enter-from { opacity: 0; transform: translateX(20px); } .page-slide-leave-to { opacity: 0; transform: translateX(-20px); }  .modal-app { --bs-modal-bg: var(--bg-card); --bs-modal-color: var(--text-primary); } .modal-app .modal-content { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px 20px 0 0; color: var(--text-primary); } .modal-app .modal-header { border-bottom: 1px solid var(--border-color); padding: 16px 20px; } .modal-app .modal-body { padding: 20px; } .modal-app .modal-footer { border-top: 1px solid var(--border-color); padding: 16px 20px; } .modal-app .btn-close { filter: invert(1); }  .modal.app-modal .modal-dialog { margin: 0; position: fixed; bottom: 0; left: 0; right: 0; transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); } .modal.app-modal.show .modal-dialog { transform: translateY(0); } .modal-backdrop.show { opacity: 0.5 !important; } .btn-app-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border: none; border-radius: 12px; padding: 14px 24px; font-size: 16px; font-weight: 700; min-height: 52px; transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35); } .btn-app-primary:active { transform: scale(0.96); box-shadow: 0 2px 8px rgba(230, 57, 70, 0.35); } .btn-app-primary:disabled { background: #444; box-shadow: none; } .btn-app-secondary { background: rgba(255,255,255,0.08); color: var(--text-primary); border: 1px solid var(--border-color); border-radius: 12px; padding: 14px 24px; font-size: 16px; font-weight: 600; min-height: 52px; transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); } .btn-app-secondary:active { transform: scale(0.96); background: rgba(255,255,255,0.12); } .btn-app-success { background: linear-gradient(135deg, var(--accent-green), #00b85c); color: white; border: none; border-radius: 12px; padding: 14px 24px; font-size: 16px; font-weight: 700; min-height: 52px; transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow: 0 4px 16px rgba(0, 210, 106, 0.35); } .btn-app-success:active { transform: scale(0.96); }  .form-control-app { background: rgba(255,255,255,0.06); border: 1.5px solid var(--border-color); border-radius: 12px; color: var(--text-primary); padding: 14px 16px; font-size: 16px; min-height: 52px; transition: all 0.2s ease; } .form-control-app:focus { background: rgba(255,255,255,0.08); border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15); color: var(--text-primary); outline: none; } .form-control-app::placeholder { color: var(--text-muted); }  .container-app { padding: 0 16px; }  .toast-app { position: fixed; top: calc(70px + var(--safe-top)); left: 50%; transform: translateX(-50%) translateY(-20px); background: rgba(22, 33, 62, 0.95); backdrop-filter: blur(20px); color: white; padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 500; z-index: 9999; opacity: 0; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: none; border: 1px solid var(--border-color); white-space: nowrap; } .toast-app.show { opacity: 1; transform: translateX(-50%) translateY(0); } .toast-app.success { border-color: var(--accent-green); box-shadow: 0 4px 20px rgba(0, 210, 106, 0.3); } .toast-app.error { border-color: var(--primary); box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3); }  .pull-refresh { text-align: center; padding: 16px; color: var(--text-muted); font-size: 13px; } .pull-refresh .spinner { width: 20px; height: 20px; border: 2px solid var(--border-color); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 8px; } @keyframes spin { to { transform: rotate(360deg); } }  .empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 20px; text-align: center; } .empty-state .empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; } .empty-state .empty-text { font-size: 16px; color: var(--text-secondary); margin-bottom: 8px; } .empty-state .empty-sub { font-size: 13px; color: var(--text-muted); }  .status-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 700; } .status-live { background: rgba(255, 68, 68, 0.15); color: #ff4444; } .status-ft { background: rgba(255,255,255,0.08); color: var(--text-muted); } .status-ns { background: rgba(67, 97, 238, 0.15); color: #4361ee; }  .league-sticky-header { position: sticky; top: calc(56px + var(--safe-top)); z-index: 50; background: var(--bg-dark); padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-color); }  .balance-card { background: linear-gradient(135deg, var(--bg-card) 0%, #1a2550 100%); border: 1px solid var(--border-color); border-radius: 20px; padding: 24px 20px; margin: 16px; position: relative; overflow: hidden; } .balance-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%); border-radius: 50%; } .balance-card .balance-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; } .balance-card .balance-amount { font-size: 36px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }  @media (min-width: 768px) { .page-wrapper { max-width: 480px; margin: 0 auto; box-shadow: 0 0 40px rgba(0,0,0,0.5); } .bottom-tabbar { max-width: 480px; left: 50%; transform: translateX(-50%); border-radius: 20px 20px 0 0; } .top-navbar { max-width: 480px; left: 50%; transform: translateX(-50%); } .float-bet-btn { right: calc(50% - 224px); } }  .text-primary-custom { color: var(--primary) !important; } .text-success-custom { color: var(--accent-green) !important; } .text-muted-custom { color: var(--text-muted) !important; } .bg-card-custom { background: var(--bg-card) !important; }  .gradient-text { background: linear-gradient(135deg, var(--primary), var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
