/* MMTV v3 — extras on top of the shared MMTV stylesheet */

.brand-tag { font-style: normal; font-size: .62rem; font-weight: 700; letter-spacing: .04em; padding: 2px 6px; border-radius: 6px; background: rgba(22,214,196,.16); color: var(--brand-2); vertical-align: middle; margin-left: 2px; }
.side-num { margin-left: auto; font-size: .7rem; font-weight: 700; color: var(--muted); background: rgba(255,255,255,.06); padding: 1px 7px; border-radius: 999px; }

/* League logo in card info */
.card-info { display: flex; align-items: center; gap: 8px; }
.card-info .lg { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }

/* Live score in the poster area */
.card-fallback .score { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: #fff; display: flex; align-items: center; gap: 8px; }
.card-fallback .score span { color: var(--muted); font-weight: 500; }

/* Stream rows reuse stream-row look */
.ch-picker { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.ch-row { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 12px; cursor: pointer; background: rgba(255,255,255,.025); border: 1px solid var(--stroke); color: var(--text); transition: all .2s var(--ease); text-align: left; }
.ch-row:hover { background: var(--card-hover); transform: translateY(-2px); border-color: rgba(109,94,252,.4); }
.ch-row.active { border-color: var(--brand-2); background: rgba(22,214,196,.12); box-shadow: 0 0 0 3px rgba(22,214,196,.12); }
.ch-row .q { flex-shrink: 0; font-size: .62rem; font-weight: 800; padding: 3px 6px; border-radius: 6px; letter-spacing: .03em; background: rgba(22,214,196,.18); color: var(--brand-2); }
.ch-row .s-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.ch-row .s-name { font-weight: 700; font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ch-row .s-lang { font-size: .72rem; color: var(--muted); white-space: nowrap; }

/* News */
.news-view { padding: 18px 32px 60px; max-width: 1180px; margin-inline: auto; }
.news-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.news-card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--card); border: 1px solid var(--stroke); text-decoration: none; color: var(--text); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.news-card:hover { transform: translateY(-5px); border-color: rgba(109,94,252,.5); box-shadow: var(--shadow); }
.news-img { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, #161a2b, #0d1018); overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-sport { position: absolute; top: 10px; left: 10px; font-size: .68rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); color: var(--brand-2); border: 1px solid var(--stroke); }
.news-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 7px; }
.news-body h3 { font-family: var(--font-head); font-size: 1rem; line-height: 1.3; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-body p { color: var(--muted); font-size: .85rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { margin-top: auto; font-size: .74rem; color: var(--muted); font-weight: 600; }

@media (max-width: 900px) {
  .news-view { padding-left: 16px; padding-right: 16px; padding-bottom: 70px; }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .ch-picker { grid-template-columns: 1fr; }
}
