* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "宋体", Arial, sans-serif; font-size: 9pt; color: #666666; background: #ffffff; }
a { color: #666666; text-decoration: underline; }
a:hover { color: #0066CC; text-decoration: none; }

.header { background: #f8f8f8; border-bottom: 1px solid #dddddd; padding: 0 20px; display: flex; align-items: center; height: 48px; }
.header .logo { font-size: 18px; font-weight: bold; color: #003399; margin-right: 30px; text-decoration: none; }
.header .logo:hover { color: #003399; }
.header nav { display: flex; gap: 0; }
.header nav a { display: inline-block; padding: 0 20px; height: 36px; line-height: 36px; color: #006699; text-decoration: none; font-size: 14px; font-family: 黑体; border-radius: 4px; }
.header nav a:hover { color: #000000; background: #eeeeee; }
.header nav a.active { color: #ffffff; background: #3C6DBA; }

.container { max-width: 1000px; margin: 0 auto; padding: 0; }

#main { min-height: 400px; }
.breadcrumb { padding: 10px 2px; color: #8a9bb2; font-size: 12px; }
.breadcrumb a { color: #0066CC; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

.loading, .empty, .error { text-align: center; padding: 60px 20px; color: #999; }
.error { color: #ff0000; }

.card { background: #fff; margin-bottom: 16px; }
.card-header { background-image: url(/images/title_bg.jpg); color: #003399; font-size: 14px; text-align: center; line-height: 25px; padding: 4px 16px; font-weight: bold; }
.card-body { padding: 12px; }

.unit-photo { float: right; width: 150px; height: 150px; overflow: hidden; margin: 0 0 8px 12px; }
.unit-photo img { width: 100%; height: 100%; object-fit: cover; }
.game-photo { width: 48px; height: 48px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.game-photo img { width: 100%; height: 100%; object-fit: cover; }

.match-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 10px; }
.match-card { display: block; border: 1px solid #dddddd; padding: 12px; text-decoration: none; background: #fff; }
.match-card:hover { border-color: #0066CC; background: #eeeeff; }
.match-card h3 { font-size: 14px; color: #0066CC; margin-bottom: 8px; }
.match-card .stats { display: flex; gap: 16px; font-size: 12px; color: #999; }

.match-info-table { width: auto; background: #dddddd; }
.match-info-table td { background: #fff; padding: 6px 12px; font-size: 9pt; }
.match-info-table td.label { background: #eeeeff; color: #006699; font-weight: bold; width: 80px; text-align: right; }

.tab-nav { display: flex; gap: 2px; margin-top: 16px; }
.tab-nav .tab-link { display: inline-block; padding: 6px 20px; background: #eeeeee; color: #666; text-decoration: none; border: 1px solid #ddd; border-bottom: none; font-size: 12px; }
.tab-nav .tab-link:hover { background: #ddd; }
.tab-nav .tab-link.active { background: #fff; color: #0066CC; font-weight: bold; border-bottom: 1px solid #fff; }

.detail-header { display: flex; align-items: center; justify-content: center; gap: 30px; padding: 20px 0; }
.player-card { text-align: center; }
.player-card .name { font-size: 14px; margin-top: 6px; }
.player-card .name a { color: #0066CC; text-decoration: none; font-weight: bold; }
.player-card .name a:hover { text-decoration: underline; }
.player-card .img { width: 80px; height: 80px; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.player-card .img img { max-width: 100%; max-height: 100%; }
.vs { font-size: 24px; font-weight: bold; color: #333; }

.standings-table { width: 100%; border-collapse: collapse; background: #dddddd; }
.standings-table th { background: #eeeeff; color: #006699; padding: 6px 8px; font-size: 9pt; text-align: center; white-space: nowrap; }
.standings-table td { background: #fff; padding: 5px 8px; font-size: 9pt; text-align: center; border-bottom: 1px solid #eee; }
.standings-table td.left { text-align: left; }
.standings-table .col-rank { width: 30px; }
.standings-table .col-name { min-width: 120px; }
.standings-table .col-num { width: 40px; }
.standings-table .col-rate { width: 60px; }
.standings-table tr.rank-1 td { background: #fffde7; }
.standings-table tr.rank-2 td { background: #f5f5f5; }
.standings-table tr.rank-3 td { background: #fff3e0; }
.standings-table a { color: #0066CC; text-decoration: none; }
.standings-table a:hover { text-decoration: underline; }

.win { color: #FF0000; font-weight: bold; font-family: Arial, Helvetica, sans-serif; }
.lose { color: #33CC00; font-weight: bold; font-family: Arial, Helvetica, sans-serif; }
.draw { color: #555555; font-weight: bold; font-family: Arial, Helvetica, sans-serif; }
.int { color: #ff9933; font-weight: bold; font-family: Arial, Helvetica, sans-serif; }
.blue { color: #0099FF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; }

.game-win { color: #ff0000; font-weight: bold; font-family: Arial; background-color: #fff2f2; }
.game-lose { color: #33cc00; font-weight: bold; font-family: Arial; background-color: #f2fff2; }
.game-draw { color: #000000; font-weight: bold; font-family: Arial; background-color: #f2f2f2; }

.game-row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-bottom: 1px solid #eee; font-size: 9pt; flex-wrap: wrap; }
.game-row:hover { background: #f8f8ff; }
.game-row .game-meta { width: 100%; font-size: 11px; color: #999; }
.game-row .team { min-width: 100px; }
.game-row .team a { color: #0066CC; text-decoration: none; }
.game-row .team a:hover { text-decoration: underline; }
.game-row .score { font-weight: bold; font-family: Arial; min-width: 30px; text-align: center; }
.game-row .score.win { color: #ff0000; }
.game-row .score.lose { color: #33cc00; }
.game-row .date { color: #999; font-size: 11px; margin-left: auto; }
.subnav { margin-bottom: 16px; }
.subnav-bar { display: flex; gap: 0; border-bottom: 2px solid #3C6DBA; background: #f8f8f8; }
.subnav-item { display: inline-block; padding: 8px 20px; color: #006699; text-decoration: none; font-size: 13px; font-family: 黑体; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.subnav-item:hover { color: #000; background: #eeeeee; }
.subnav-item.active { color: #fff; background: #3C6DBA; border-bottom-color: #3C6DBA; }
.match-banner { margin-bottom: 16px; }
.match-banner img { width: 100%; max-height: 200px; object-fit: cover; display: block; }

.overview-stats { display: flex; gap: 12px; margin-bottom: 16px; }
.stat-card { flex: 1; text-align: center; background: #3C6DBA; color: #fff; padding: 14px 8px; border-radius: 4px; }
.stat-card .stat-num { font-size: 24px; font-weight: bold; }
.stat-card .stat-label { font-size: 11px; margin-top: 2px; opacity: 0.85; }
.search-bar { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: #f8f8f8; border: 1px solid #ddd; margin-bottom: 12px; flex-wrap: wrap; }
.search-bar .search-label { font-weight: bold; color: #003399; font-size: 13px; white-space: nowrap; }
.search-input { padding: 4px 8px; border: 1px solid #ccc; font-size: 9pt; width: 140px; }
.search-select { padding: 4px; border: 1px solid #ccc; font-size: 9pt; max-width: 160px; }
.search-btn { padding: 4px 14px; border: 1px solid #3C6DBA; background: #3C6DBA; color: #fff; font-size: 9pt; cursor: pointer; }
.search-btn:hover { background: #2a5290; }




.unit-icon { vertical-align: middle; margin-right: 3px; border: 0; }
.unit-icon-s { vertical-align: middle; margin-right: 2px; border: 0; }
.ref-inline { color: #999; font-size: 10px; margin-left: 4px; }

.schedule-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.schedule-nav a { display: inline-block; padding: 4px 16px; background: #f0f0f0; border: 1px solid #ddd; color: #006699; text-decoration: none; font-size: 12px; }
.schedule-nav a:hover { background: #eeeeff; color: #0066CC; }
.schedule-link.active { background: #3C6DBA; color: #fff; border-color: #3C6DBA; }
.schedule-name-title { font-size: 14px; font-weight: bold; color: #003399; padding: 6px 0 10px; border-bottom: 1px solid #eee; margin-bottom: 12px; }


.schedule-subnav { display: flex; gap: 0; margin-bottom: 12px; }
.schedule-subnav .subnav-item { display: inline-block; padding: 5px 16px; background: #eee; color: #666; text-decoration: none; font-size: 12px; border: 1px solid #ddd; }
.schedule-subnav .subnav-item:hover { background: #ddd; }
.schedule-subnav .subnav-item.active { background: #fff; color: #0066CC; font-weight: bold; border-bottom-color: #fff; }

.vstable-scroll { overflow-x: auto; }
.vstable-table { border-collapse: collapse; background: #dddddd; font-size: 9pt; }
.vstable-table th, .vstable-table td { padding: 4px 6px; text-align: center; white-space: nowrap; background: #fff; }
.vstable-table th { background: #eeeeff; color: #006699; font-weight: bold; }
.vstable-table .vstable-label { background: #eeeeff; color: #006699; font-weight: bold; min-width: 80px; text-align: left; }
.vstable-table .vstable-col-text { display: inline-block; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vstable-table .vstable-self { background: #f0f0f0; color: #ccc; }
.vstable-table .vstable-win { color: #ff0000; font-weight: bold; background: #fff2f2; }
.vstable-table .vstable-lose { color: #33cc00; font-weight: bold; background: #f2fff2; }
.vstable-table .vstable-draw { color: #000000; font-weight: bold; background: #f2f2f2; }
.vstable-table .vstable-pending { color: #ccc; }
.vstable-table a { color: inherit; text-decoration: none; }
.vstable-table a:hover { text-decoration: underline; }

.bracket-round-header { margin-bottom: 4px; font-size: 12px; color: #006699; font-weight: bold; }
.bracket-area { position: relative; min-width: 400px; }
.bracket-game-cell { position: absolute; border: 1px solid #ccc; background: #fff; cursor: pointer; z-index: 2; }
.bracket-game-cell:hover { border-color: #0066CC; box-shadow: 0 0 4px rgba(0,102,204,0.3); }
.bracket-game-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.bracket-game-table td { padding: 2px 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.bracket-game-table a { color: #0066CC; text-decoration: none; }
.bracket-game-table a:hover { text-decoration: underline; }
.bracket-player-win { color: #ff0000; font-weight: bold; background: #fff2f2; }
.bracket-player-lose { color: #33cc00; font-weight: bold; background: #f2fff2; }
.bracket-score-cell { width: 22px; text-align: center; font-weight: bold; }
.bracket-hover-bar { display: none; position: absolute; z-index: 10; background: rgba(0,0,0,0.75); color: #fff; font-size: 11px; padding: 1px 6px; line-height: 16px; text-align: center; }
.bracket-line-h { position: absolute; height: 1px; background: #ccc; width: 12px; z-index: 1; }
.bracket-line-v { position: absolute; width: 1px; background: #ccc; z-index: 1; }
.bracket-third-label { position: absolute; }

.news-item { display: flex; justify-content: space-between; padding: 8px 4px; border-bottom: 1px solid #eee; }
.news-item:hover { background: #f8f8ff; }
.news-item .title { color: #0066CC; font-size: 12px; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.news-item .date { color: #808080; font-size: 11px; margin-left: 12px; white-space: nowrap; }

.stl-home-grid { display: grid; grid-template-columns: 260px 450px 270px; gap: 10px; align-items: start; padding-top: 10px; }
.stl-left, .stl-center, .stl-right { min-width: 0; }
.panel-title { background-image: url(/images/title_bg.jpg); color: #003399; font-size: 14px; text-align: center; line-height: 25px; padding: 4px 12px; font-weight: bold; margin-top: 10px; }
.panel-title:first-child { margin-top: 0; }
.system-links, .compact-list, .compact-games, #stl-main-panel, #home-teams, #home-players, .news-list, .event-system-entry { border: 1px solid #dddddd; border-top: none; background: #fff; }
.system-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #eeeeee; }
.system-links a { display: block; min-height: 32px; line-height: 32px; padding: 0 8px; background: #ffffff; color: #006699; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.system-links a:hover { background: #eeeeff; color: #0066CC; }
.compact-list { padding: 6px 8px; }
.compact-link { display: block; padding: 6px 0; border-bottom: 1px dotted #cccccc; color: #0066CC; text-decoration: none; }
.compact-link:hover { color: #003399; background: #f8f8ff; }
.compact-name { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compact-meta { display: block; color: #999999; font-size: 11px; margin-top: 2px; }
.more-line { text-align: right; padding: 8px 0 2px; }
.more-line a { color: #006699; }
.event-system-entry { padding: 14px 12px; text-align: center; }
.event-system-entry a { display: block; background: #3C6DBA; border: 1px solid #2f5aa1; color: #ffffff; font-weight: bold; line-height: 30px; text-decoration: none; margin-bottom: 8px; }
.event-system-entry a:hover { background: #2f5aa1; color: #ffffff; }
.event-system-entry p { color: #777777; line-height: 1.6; text-align: left; }
#stl-main-panel { padding-bottom: 12px; }
.stl-banner { height: 150px; overflow: hidden; background: #f5f5f5; border-bottom: 1px solid #dddddd; }
.stl-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stl-main-title { color: #003399; font-size: 18px; font-family: 黑体, Arial, sans-serif; text-align: center; padding: 14px 12px 6px; }
.stl-main-desc { color: #666666; line-height: 1.8; padding: 0 16px 10px; max-height: 76px; overflow: hidden; }
.stl-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee; margin: 4px 12px 10px; }
.stl-stat-row a { display: block; text-align: center; padding: 8px 4px; color: #666666; text-decoration: none; border-left: 1px solid #eeeeee; }
.stl-stat-row a:first-child { border-left: none; }
.stl-stat-row a:hover { background: #eeeeff; color: #0066CC; }
.stl-stat-row span { display: block; color: #003399; font: bold 18px Arial, Helvetica, sans-serif; }
.stl-actions { display: flex; justify-content: center; gap: 8px; padding: 0 12px; }
.stl-actions a { display: inline-block; padding: 5px 14px; background: #3C6DBA; color: #ffffff; text-decoration: none; border: 1px solid #2f5aa1; }
.stl-actions a:hover { background: #2f5aa1; color: #ffffff; }
.compact-games { padding: 6px 8px; }
.compact-game { display: grid; grid-template-columns: minmax(70px, 1fr) 28px 10px 28px minmax(70px, 1fr) auto; gap: 5px; align-items: center; padding: 6px 0; border-bottom: 1px dotted #cccccc; cursor: pointer; }
.compact-game:hover { background: #f8f8ff; }
.compact-game-meta { grid-column: 1 / -1; color: #999999; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compact-game .team { color: #0066CC; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compact-game .date { color: #999999; font-size: 11px; white-space: nowrap; }
.mini-rank-table { width: 100%; border-collapse: collapse; background: #dddddd; }
.mini-rank-table th { background: #eeeeff; color: #006699; padding: 5px 4px; font-size: 9pt; text-align: center; white-space: nowrap; }
.mini-rank-table td { background: #ffffff; padding: 5px 4px; text-align: center; border-bottom: 1px solid #eeeeee; }
.mini-rank-table td.left { text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 125px; }
.mini-rank-table a { color: #0066CC; text-decoration: none; }
.mini-rank-table a:hover { text-decoration: underline; }

.stl-history-home { padding: 14px 0 0; }
.stl-home-hero { min-height: 360px; background: #ffffff; border: 1px solid #d4e3f3; display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; align-items: end; padding: 34px; position: relative; overflow: hidden; box-shadow: 0 16px 38px rgba(25,72,126,0.12); }
.stl-home-hero:after { content: ""; position: absolute; inset: 0; background: url(../banner.png) center/cover no-repeat; opacity: 0.72; pointer-events: none; z-index: 0; }
.stl-home-hero:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.76) 54%, rgba(255,255,255,0.42) 100%); pointer-events: none; z-index: 1; }
.stl-home-copy, .stl-home-stats { position: relative; z-index: 2; }
.stl-home-copy h1 { color: #0c3d80; font: bold 36px "Microsoft YaHei", 黑体, Arial, sans-serif; line-height: 1.2; margin-bottom: 12px; }
.stl-home-copy p { color: #4c607a; font-size: 14px; line-height: 1.9; max-width: 650px; }
.stl-home-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stl-home-actions a { background: #0f5ca8; border: 1px solid #0b4d91; color: #ffffff; padding: 9px 16px; text-decoration: none; font-weight: bold; box-shadow: 0 6px 16px rgba(15,92,168,0.18); }
.stl-home-actions a:hover { background: #0a4b8d; color: #ffffff; }
.stl-home-stats { display: grid; gap: 10px; }
.stl-home-stats a { display: block; background: rgba(255,255,255,0.94); border: 1px solid #cbdff3; padding: 13px 15px; color: #48627d; text-decoration: none; box-shadow: 0 8px 18px rgba(25,72,126,0.08); }
.stl-home-stats a:hover { border-color: #7db4ed; background: #ffffff; }
.stl-home-stats strong { display: block; color: #0b4d9f; font: bold 25px Arial, Helvetica, sans-serif; }
.stl-home-stats span { display: block; margin-top: 2px; }
.stl-history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.stl-history-card { background: #ffffff; border: 1px solid #d9e6f5; box-shadow: 0 8px 22px rgba(25,72,126,0.07); padding: 18px; overflow: hidden; }
.stl-history-wide { grid-column: 1 / -1; }
.stl-history-card h2 { color: #0c3d80; font: bold 17px "Microsoft YaHei", 黑体, Arial, sans-serif; margin-bottom: 11px; }
.stl-history-card p { color: #566b84; line-height: 1.9; font-size: 13px; margin-top: 8px; }
.stl-timeline { display: grid; gap: 9px; }
.stl-timeline div { border-left: 3px solid #2d7fca; padding: 4px 0 5px 12px; background: #f6fbff; }
.stl-timeline strong { display: block; color: #0b4d9f; font: bold 13px Arial, Helvetica, sans-serif; margin-bottom: 2px; }
.stl-timeline span { color: #566b84; line-height: 1.6; }
.stl-rule-list { margin-left: 18px; color: #566b84; line-height: 1.9; }
.stl-history-media { display: grid; grid-template-columns: 220px minmax(0, 1fr); padding: 0; align-items: stretch; }
.stl-history-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stl-history-media div { padding: 18px; }
.stl-archive-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stl-archive-links a { display: block; min-height: 74px; background: #f7fbff; border: 1px solid #d6e8f8; padding: 12px; color: #48627d; text-decoration: none; }
.stl-archive-links a:hover { border-color: #7db4ed; background: #eef7ff; }
.stl-archive-links strong { display: block; color: #0b4d9f; font-size: 14px; margin-bottom: 6px; }
.stl-archive-links span { display: block; line-height: 1.5; color: #6b7f96; }

.tag { display: inline-block; padding: 1px 8px; font-size: 11px; border-radius: 2px; }
.tag-blue { background: #e6f7ff; color: #1890ff; border: 1px solid #91d5ff; }

.pager { text-align: center; padding: 12px 0; }
.pager button { display: inline-block; padding: 3px 10px; border: 1px solid #ddd; background: #fff; color: #000; font-size: 11px; cursor: pointer; margin: 0 2px; }
.pager button:hover { background: #3C6DBA; color: #fff; border-color: #3C6DBA; }
.pager button.active { background: #3C6DBA; color: #fff; border-color: #3C6DBA; font-weight: bold; }
.pager button:disabled { color: #ccc; cursor: default; }
.pager button:disabled:hover { background: #fff; color: #ccc; border-color: #ddd; }
.pager .pager-dots { display: inline-block; padding: 3px 6px; color: #999; font-size: 11px; }

.footer { text-align: center; padding: 20px 8px; color: #666666; font-size: 12px; line-height: 1.8; border-top: 1px dashed #ccc; margin-top: 30px; }
.footer a { color: #0066CC; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.grey { color: #999999; }

.stl-match-mode { background: #f4f8fd; color: #25364d; }
.stl-match-mode .header { display: none; }
.stl-match-mode .container { max-width: 1180px; padding: 0 12px; }
.stl-match-mode .footer { border-top: none; margin-top: 18px; }
.stl-shell { padding-top: 14px; }
.stl-shell-top { height: 54px; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.92); border: 1px solid #d9e6f5; padding: 0 18px; box-shadow: 0 8px 24px rgba(26,76,132,0.08); }
.stl-shell-brand { color: #0b4d9f; font: bold 24px Arial, Helvetica, sans-serif; letter-spacing: 0; text-decoration: none; }
.stl-shell-brand:hover { color: #073a79; }
.stl-shell-links { display: flex; gap: 10px; }
.stl-shell-links a { color: #285f9d; background: #eef6ff; border: 1px solid #cfe2f7; padding: 7px 14px; text-decoration: none; font-weight: bold; }
.stl-shell-links a:hover { background: #dceeff; color: #003399; }
.stl-hero-shell { min-height: 330px; margin-top: 14px; background: #ffffff; border: 1px solid #d4e3f3; display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: end; padding: 36px; box-shadow: 0 16px 38px rgba(25,72,126,0.12); position: relative; overflow: hidden; }
.stl-hero-shell:after { content: ""; position: absolute; inset: 0; background: url(../banner.png) center/cover no-repeat; opacity: 0.72; pointer-events: none; z-index: 0; }
.stl-hero-shell:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.76) 46%, rgba(255,255,255,0.42) 100%); pointer-events: none; z-index: 1; }
.stl-hero-copy, .stl-hero-stats { position: relative; z-index: 2; }
.stl-kicker { color: #c58c20; font: bold 12px Arial, Helvetica, sans-serif; text-transform: uppercase; margin-bottom: 8px; }
.stl-hero-copy h1 { color: #0c3d80; font: bold 34px "Microsoft YaHei", 黑体, Arial, sans-serif; line-height: 1.2; margin-bottom: 12px; }
.stl-hero-copy p { color: #4c607a; font-size: 14px; line-height: 1.8; max-width: 560px; }
.stl-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.stl-hero-actions a { background: #0f5ca8; border: 1px solid #0b4d91; color: #ffffff; padding: 9px 18px; text-decoration: none; font-weight: bold; box-shadow: 0 6px 16px rgba(15,92,168,0.18); }
.stl-hero-actions a:hover { background: #0a4b8d; color: #ffffff; }
.stl-hero-stats { display: grid; gap: 10px; }
.stl-hero-stats a { display: block; background: rgba(255,255,255,0.92); border: 1px solid #cbdff3; padding: 14px 16px; color: #48627d; text-decoration: none; box-shadow: 0 8px 18px rgba(25,72,126,0.08); }
.stl-hero-stats a:hover { border-color: #7db4ed; background: #ffffff; }
.stl-hero-stats strong { display: block; color: #0b4d9f; font: bold 28px Arial, Helvetica, sans-serif; }
.stl-hero-stats span { display: block; margin-top: 2px; }
.stl-shell-tabs { display: flex; gap: 6px; margin: 14px 0; background: #ffffff; border: 1px solid #d9e6f5; padding: 8px; }
.stl-shell-tabs a { flex: 1; min-width: 0; text-align: center; color: #236199; text-decoration: none; padding: 10px 8px; font-weight: bold; border: 1px solid transparent; }
.stl-shell-tabs a:hover { background: #eef6ff; border-color: #d6e8f8; }
.stl-shell-tabs a.active { background: #0f5ca8; border-color: #0f5ca8; color: #ffffff; }
.stl-shell-content { background: transparent; }
.stl-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stl-feature, .stl-data-block { background: #ffffff; border: 1px solid #d9e6f5; box-shadow: 0 8px 22px rgba(25,72,126,0.07); }
.stl-feature { display: grid; grid-template-columns: 180px minmax(0, 1fr); align-items: center; min-height: 150px; overflow: hidden; }
.stl-feature-wide { grid-column: 1 / -1; }
.stl-feature img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stl-feature div { padding: 18px 20px; }
.stl-feature h2, .stl-data-block h2 { color: #0c3d80; font: bold 16px "Microsoft YaHei", 黑体, Arial, sans-serif; margin-bottom: 10px; }
.stl-feature p { color: #566b84; line-height: 1.8; font-size: 13px; }
.stl-data-block { padding: 14px; overflow: hidden; }
.stl-data-block .match-info-table { width: 100%; }
.stl-shell .card { border: 1px solid #d9e6f5; box-shadow: 0 8px 22px rgba(25,72,126,0.07); }
.stl-shell .card-header { background: #eaf4ff; color: #0c3d80; }

@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .stl-home-grid { grid-template-columns: 1fr; }
  .stl-home-hero { grid-template-columns: 1fr; padding: 22px 16px; min-height: 0; }
  .stl-home-copy h1 { font-size: 27px; }
  .stl-home-stats { grid-template-columns: repeat(2, 1fr); }
  .stl-history-grid { grid-template-columns: 1fr; }
  .stl-history-wide { grid-column: auto; }
  .stl-history-media { grid-template-columns: 1fr; }
  .stl-history-media img { height: 150px; }
  .stl-archive-links { grid-template-columns: 1fr; }
  .system-links { grid-template-columns: 1fr; }
  .compact-game { grid-template-columns: minmax(60px, 1fr) 24px 8px 24px minmax(60px, 1fr); }
  .compact-game .date { grid-column: 1 / -1; }
  .stl-actions { flex-wrap: wrap; }
  .match-grid { grid-template-columns: 1fr; }
  .detail-header { flex-direction: column; gap: 10px; }
  .game-row { gap: 4px; }
  .game-row .team { min-width: 60px; font-size: 11px; }
  .stl-match-mode .container { padding: 0 8px; }
  .stl-shell-top { height: auto; align-items: flex-start; gap: 10px; padding: 12px; flex-direction: column; }
  .stl-shell-links { flex-wrap: wrap; }
  .stl-hero-shell { grid-template-columns: 1fr; padding: 22px 16px; min-height: 0; }
  .stl-hero-copy h1 { font-size: 26px; }
  .stl-hero-stats { grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
  .stl-hero-stats a { padding: 10px 8px; text-align: center; }
  .stl-hero-stats strong { font-size: 20px; }
  .stl-shell-tabs { overflow-x: auto; }
  .stl-shell-tabs a { flex: 0 0 74px; }
  .stl-overview-grid { grid-template-columns: 1fr; }
  .stl-feature { grid-template-columns: 1fr; }
  .stl-feature img { height: 150px; }
}
