:root {
  --bg: #ffffff;
  --bg-subtle: #f7f7f7;
  --card: #ffffff;
  --text: #1a1a1a;
  --text-sub: #666;
  --border: #e5e5e5;
  --border-strong: #cccccc;
  --accent: #c1304a;
  --today: #fffaed;
  --today-border: #d4af37;

  --pl: #3d195b;
  --elc: #0e7c86;
  --pd: #ee8707;
  --bl1: #d20515;
  --sa: #008fd7;
  --fl1: #1c2c5b;
  --ded: #ee5c1d;
  --cl: #00306e;
  --ppl: #00733e;
  --uel: #f37300;
  --uecl: #00a650;

  --cl-promo: #d4f5d4;     /* 昇格・CL圏 */
  --cl-uel: #fff3c2;       /* EL圏 */
  --cl-relegate: #ffd6d6;  /* 降格圏 */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

header {
  padding: 18px 16px 14px;
  background: #0d0d0d;
  border-bottom: 4px solid var(--accent);
  color: #ffffff;
}

header h1 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.updated {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.period {
  margin: 2px 0 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* === W杯特集バナー（ヘッダー直下のプロモ） === */
.wc-promo {
  display: block;
  background: linear-gradient(135deg, #c1304a 0%, #7a1928 100%);
  color: #ffffff !important;
  text-decoration: none;
  padding: 16px 18px;
  border-bottom: 4px solid #0d0d0d;
  transition: filter 0.15s ease;
}
.wc-promo:hover {
  filter: brightness(1.08);
  text-decoration: none !important;
}
.wc-promo-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}
.wc-promo .trophy {
  font-size: 38px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.wc-promo .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.wc-promo .title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.wc-promo .sub {
  font-size: 11px;
  opacity: 0.88;
  line-height: 1.5;
}
.wc-promo .countdown-block {
  text-align: right;
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 14px;
  min-width: 64px;
}
.wc-promo .countdown {
  font-size: 28px;
  font-weight: 800;
  font-feature-settings: "tnum";
  line-height: 1;
}
.wc-promo .countdown .num { display: inline; }
.wc-promo .countdown .unit { font-size: 14px; margin-left: 2px; opacity: 0.85; }
.wc-promo .countdown-label {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .wc-promo { padding: 14px 14px; }
  .wc-promo-grid { gap: 12px; }
  .wc-promo .trophy { font-size: 32px; }
  .wc-promo .title { font-size: 15px; }
  .wc-promo .sub { font-size: 11px; }
  .wc-promo .countdown { font-size: 22px; }
  .wc-promo .countdown-block { padding-left: 10px; min-width: 56px; }
}

.view-tabs {
  display: flex;
  gap: 8px;
  max-width: 720px;
  margin: 18px auto 8px;
  padding: 0 16px;
  flex-wrap: wrap;
}

.view-tab {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  background: #ffffff;
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: all 0.15s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.view-tab .vt-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
}

.view-tab:hover {
  border-color: var(--text);
  color: var(--text);
}

.view-tab.active {
  background: #0d0d0d;
  color: #ffffff;
  border-color: #0d0d0d;
  font-weight: 700;
}

@media (max-width: 600px) {
  .view-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin: 12px 12px 8px;
    padding: 0;
  }
  .view-tab {
    padding: 12px 8px;
    font-size: 12.5px;
  }
}

.filters {
  padding: 12px 16px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filters.hidden { display: none; }

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.toggle input { cursor: pointer; }

.league-filter { font-size: 14px; }

.league-filter summary {
  cursor: pointer;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
}

.league-filter > div {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.league-filter label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  cursor: pointer;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

.view.hidden { display: none; }

.loading, .empty {
  text-align: center;
  color: var(--text-sub);
  padding: 40px 0;
}

.date-heading {
  margin: 24px 0 8px;
  padding: 4px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-sub);
  border-bottom: 2px solid var(--border);
}

.date-heading.today {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.match {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.match.today {
  background: var(--today);
  border-color: var(--today-border);
}

.match.finished { opacity: 0.78; }

.match-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.kickoff {
  font-size: 16px;
  font-weight: 700;
  font-feature-settings: "tnum";
  min-width: 56px;
  text-align: center;
}

.kickoff small {
  display: block;
  font-size: 11px;
  font-weight: normal;
  color: var(--text-sub);
}

.teams {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.team-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.team-crest {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.team-mid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  min-width: 0;
}

.team-name { flex-shrink: 0; }

.team-jp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  background: #fff0f0;
  color: var(--accent);
  border: 1px solid #f4c0c0;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.match { position: relative; }
.match.has-jp-corner { padding-top: 36px; }
.jp-corner-wrap {
  position: absolute;
  top: 9px;
  z-index: 2;
}
.jp-corner-wrap.left { left: 12px; }
.jp-corner-wrap.right { right: 12px; }
.jp-corner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  background: #ffffff;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.2;
}
.jp-corner strong {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.team-score {
  font-weight: 700;
  font-feature-settings: "tnum";
  min-width: 22px;
  text-align: right;
}

.team-row.winner .team-name,
.team-row.winner .team-score { font-weight: 700; }

/* === ハイライト動画リンク（YouTubeスタイル・1試合1ボタン） === */
.match-top.has-highlight {
  grid-template-columns: auto 1fr 96px;
}
.match-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  background: #ff0000;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 4px;
  white-space: nowrap;
  align-self: center;
  transition: background 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.match-highlight-placeholder {
  display: inline-block;
  width: 96px;
  height: 1px;
  align-self: center;
}

/* スマホ：ハイライトはYouTubeアイコン（44x44）に置換 */
@media (max-width: 600px) {
  .match-top.has-highlight {
    grid-template-columns: auto 1fr 44px;
    gap: 8px;
  }
  .match-highlight-placeholder { width: 44px; }
  .match-highlight {
    padding: 0;
    width: 44px;
    height: 44px;
    background: transparent !important;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .match-highlight:hover { background: transparent !important; }
  .match-highlight .label-text { display: none; }
  .yt-icon {
    width: 36px;
    height: 26px;
    display: block;
  }
}
@media (min-width: 601px) {
  .match-highlight .icon-only { display: none; }
}
.match-highlight:hover {
  background: #cc0000;
  text-decoration: none !important;
}

.tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  margin-top: 8px;
}
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.tags-row.broadcasters {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  gap: 6px;
}

.league-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  font-size: 11px;
  white-space: nowrap;
}

.league-tag.cat-league-39 { background: var(--pl); }
.league-tag.cat-league-40 { background: var(--elc); }
.league-tag.cat-league-140 { background: var(--pd); }
.league-tag.cat-league-78 { background: var(--bl1); }
.league-tag.cat-league-135 { background: var(--sa); }
.league-tag.cat-league-61 { background: var(--fl1); }
.league-tag.cat-league-88 { background: var(--ded); }
.league-tag.cat-league-2 { background: var(--cl); }
.league-tag.cat-league-3 { background: var(--uel); }
.league-tag.cat-league-848 { background: var(--uecl); }
.league-tag.cat-league-94 { background: var(--ppl); }

.bc-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid var(--border-strong, #cccccc);
  background: #ffffff;
  color: var(--text-sub);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.bc-tag .bc-play {
  font-size: 9px;
  line-height: 1;
}
.bc-tag .bc-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
  background: #ffffff;
}
.bc-tag.bc-dazn .bc-logo {
  background: transparent;
}
a.bc-tag:hover { text-decoration: none; }

/* per-broadcaster brand colors */
.bc-tag.bc-wowow { color: #003a78; border-color: #003a78; }
a.bc-tag.bc-wowow:hover { background: #003a78; color: #ffffff; }

.bc-tag.bc-dazn { color: #000000; border-color: #000000; background: #fee100; }
a.bc-tag.bc-dazn:hover { background: #000000; color: #fee100; }

.bc-tag.bc-lemino { color: #c0003f; border-color: #c0003f; }
a.bc-tag.bc-lemino:hover { background: #c0003f; color: #ffffff; }

.bc-tag.bc-abema { color: #00aa55; border-color: #00aa55; }
a.bc-tag.bc-abema:hover { background: #00aa55; color: #ffffff; }

.bc-tag.bc-unext { color: #000000; border-color: #000000; }
a.bc-tag.bc-unext:hover { background: #000000; color: #ffffff; }

.bc-tag.bc-bs10 { color: #0066b3; border-color: #0066b3; }
a.bc-tag.bc-bs10:hover { background: #0066b3; color: #ffffff; }

.status-tag {
  background: #eee;
  color: var(--text-sub);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
}

.status-live {
  background: #ffe5e5;
  color: var(--accent);
  font-weight: 600;
}

/* ===== Calendar ===== */

.cal-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.cal-nav button {
  padding: 6px 12px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.cal-nav button:hover { background: var(--bg); }

#calMonthLabel {
  font-size: 16px;
  font-weight: 700;
  margin: 0 8px;
  flex: 1;
  text-align: center;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--border);
  border: 1px solid var(--border);
  gap: 1px;
  border-radius: 6px;
  overflow: hidden;
}

.cal-cell {
  background: var(--card);
  min-height: 80px;
  padding: 4px 6px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cal-cell.head {
  min-height: 0;
  text-align: center;
  font-weight: 700;
  background: var(--bg);
  padding: 6px 0;
  cursor: default;
  font-size: 12px;
}

.cal-cell.head.sun { color: #c8102e; }
.cal-cell.head.sat { color: #1858a8; }

.cal-cell.other-month { background: #fafbfc; color: #bbb; }
.cal-cell.out-of-range {
  background: #f0f1f3;
  color: #c0c2c5;
  cursor: not-allowed;
}
.cal-cell.out-of-range .cal-date { color: #c0c2c5; }
.cal-cell.today { background: var(--today); }
.cal-cell.today.out-of-range { background: var(--today); color: var(--text); cursor: pointer; }
.cal-cell.selected { outline: 2px solid var(--accent); outline-offset: -2px; }

.cal-date { font-weight: 600; }
.cal-cell.sun .cal-date { color: #c8102e; }
.cal-cell.sat .cal-date { color: #1858a8; }

.cal-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 2px;
}

.cal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.cal-count {
  font-size: 10px;
  color: var(--text-sub);
}

.cal-day-detail { margin-top: 16px; }
.cal-day-detail h3 { margin: 0 0 8px; font-size: 15px; }

/* ===== Ranking ===== */

.rank-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.rank-controls select {
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  font-size: 14px;
}

.sort-btn {
  padding: 4px 10px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.sort-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.rank-section-title {
  font-size: 16px;
  margin: 24px 0 8px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 4px;
}

.standings-table, .scorers-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 13px;
}

.standings-table th, .standings-table td,
.scorers-table th, .scorers-table td {
  padding: 6px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.standings-table th, .scorers-table th {
  background: var(--bg);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-sub);
  white-space: nowrap;
}

.standings-table td.team-cell, .scorers-table td.player-cell {
  text-align: left;
  font-weight: 500;
}

.standings-table td.num,
.scorers-table td.num {
  font-feature-settings: "tnum";
  font-weight: 500;
}

.standings-table td.points {
  font-weight: 700;
  font-size: 14px;
}

.row-crest {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
  object-fit: contain;
}

.standings-table tr.zone-cl td.position { box-shadow: inset 4px 0 0 #1858a8; }
.standings-table tr.zone-uel td.position { box-shadow: inset 4px 0 0 #f5b500; }
.standings-table tr.zone-relegate td.position { box-shadow: inset 4px 0 0 #c8102e; }

.standings-table tr.has-jp {
  background: #fff0f0;
}

.scorers-table tr.is-jp {
  background: #fff0f0;
  font-weight: 600;
}

.scorers-table tr.jp-club:not(.is-jp) {
  background: #fff8f8;
}

.standings-table tr.has-jp .team-jp,
.scorers-table tr.jp-club .team-jp {
  font-size: 11px;
  margin-left: 4px;
  background: transparent;
  border: none;
  padding: 0;
}

.zone-legend {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 6px;
  flex-wrap: wrap;
}

.zone-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 3px;
}

footer {
  text-align: center;
  padding: 32px 16px;
  font-size: 11px;
  color: var(--text-sub);
}

footer a { color: var(--text-sub); }

@media (max-width: 480px) {
  .cal-cell { min-height: 56px; font-size: 11px; }
  .cal-cell.head { font-size: 11px; }
  .cal-dot { width: 6px; height: 6px; }
  .standings-table, .scorers-table { font-size: 12px; }
  .standings-table th, .standings-table td,
  .scorers-table th, .scorers-table td { padding: 4px 4px; }
}

/* ===== 試合詳細モーダル ===== */
.match.clickable { cursor: pointer; }
.match.clickable:hover {
  background: var(--bg-subtle, #f7f7f7);
}

.match-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 16px;
  z-index: 1000;
  overflow-y: auto;
}
.match-modal {
  background: #ffffff;
  border-radius: 4px;
  max-width: 580px;
  width: 100%;
  padding: 22px 22px 18px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.match-modal-close {
  position: absolute;
  top: 8px; right: 12px;
  background: none; border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-sub);
  cursor: pointer;
  padding: 4px 8px;
}
.match-modal-close:hover { color: var(--text); }
.modal-comp {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
  font-size: 11px;
}
.modal-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 8px 0 4px;
}
.modal-team { text-align: center; }
.modal-crest {
  width: 56px; height: 56px;
  object-fit: contain;
  margin: 0 auto 6px;
  display: block;
}
.modal-name {
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
}
.modal-result {
  font-size: 32px;
  font-weight: 800;
  font-feature-settings: "tnum";
  letter-spacing: 0.04em;
  text-align: center;
}
.modal-meta {
  text-align: center;
  font-size: 11px;
  color: var(--text-sub);
  margin: 4px 0 14px;
}
.modal-section {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.modal-section h3 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-sub);
  text-transform: uppercase;
}
.modal-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-goals-side {
  background: var(--bg-subtle, #f7f7f7);
  padding: 8px 10px;
  border-radius: 4px;
}
.modal-goals-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.modal-goal-list {
  list-style: none;
  margin: 0; padding: 0;
}
.modal-goal {
  font-size: 13px;
  padding: 3px 0;
  line-height: 1.5;
}
.modal-goal.jp {
  color: var(--accent);
  font-weight: 700;
}
.modal-min {
  font-size: 11px;
  color: var(--text-sub);
  font-feature-settings: "tnum";
}
.modal-goal.jp .modal-min { color: var(--accent); }
.modal-goal-empty {
  font-size: 12px;
  color: var(--text-sub);
}
.modal-highlights {
  display: flex; flex-direction: column; gap: 6px;
}
.modal-highlights .match-highlight {
  white-space: normal;
  word-break: break-word;
  text-align: left;
  line-height: 1.4;
  font-size: 12px;
  padding: 10px 14px;
}
.modal-source {
  margin-top: 14px;
  font-size: 10px;
  color: var(--text-sub);
  text-align: center;
  font-style: italic;
}
@media (max-width: 600px) {
  .match-modal { padding: 16px 14px 14px; }
  .modal-result { font-size: 26px; }
  .modal-crest { width: 44px; height: 44px; }
  .modal-name { font-size: 12px; }
  .modal-goals { grid-template-columns: 1fr; }
}

/* ===== 日本人選手ニュース ===== */
.news-section {
  background: var(--bg-subtle);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 24px;
}
.news-section[open] {
  padding: 0 16px 14px;
}
.news-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.news-section-title::-webkit-details-marker { display: none; }
.news-section-title:hover { background: rgba(0,0,0,0.03); }
.news-icon { font-size: 16px; }
.news-label { flex: 1; }
.news-count {
  font-size: 11px;
  color: var(--text-sub);
  font-weight: 500;
  font-feature-settings: "tnum";
}
.news-toggle-arrow {
  font-size: 10px;
  color: var(--text-sub);
  transition: transform 0.2s ease;
}
.news-section[open] .news-toggle-arrow { transform: rotate(180deg); }
.news-section[open] > .news-list {
  margin-top: 4px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news-item {
  display: block;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s;
}
.news-item:hover {
  background: #fff8f9;
  border-color: var(--accent);
  text-decoration: none;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 11px;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.news-date { font-feature-settings: "tnum"; }
.news-source { color: var(--accent); font-weight: 600; }
.news-players {
  background: #fff0f0;
  color: var(--accent);
  border: 1px solid #f4c0c0;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.news-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.news-source-note {
  margin: 10px 0 0;
  font-size: 10px;
  color: var(--text-sub);
  text-align: center;
  font-style: italic;
}
