.news-card {
    background-color: #1b1b1b;
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card { min-width: 0; }

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.news-card strong {
    font-size: 1.2rem;
    color: #ffffff;
}

.news-card p {
    margin-top: 8px;
    color: #c7c7c7;
    font-size: 1rem;
}

.tx-card { padding: 14px 16px; }

.tx-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}

.tx-icon { font-size: 1.2rem; }

.tx-title { font-weight: 700; }

.tx-meta { color: #777; font-size: 0.9rem; margin-top: 6px; }

.tx-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px;
}

.tx-team {
  background: #fafafa; border: 1px solid #eee; border-radius: 8px; padding: 10px;
}

.tx-team-name { font-weight: 600; margin-bottom: 6px; display: block; }

.tx-section-label {
  font-size: 0.85rem; color: #666; margin: 6px 0 2px;
}

.tx-single { margin-top: 6px; }

.tx-badges { display: flex; gap: 8px; align-items: center; }

.tx-badge {
  font-size: 0.75rem; padding: 2px 8px; border-radius: 999px; background: #eee; border: 1px solid #ddd;
}

.pr-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 6px;
}

.pr-btn {
  background: #1b1b1b;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #ffffff;
}

.pr-btn:hover { transform: translateY(-2px); box-shadow: 0 2px 6px rgba(0,0,0,0.12); }

.power-rankings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: .25rem;
}

.power-card {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  background: #1b1b1b;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  border: 1px solid #2e2e2e;
  transition: transform .18s ease, box-shadow .18s ease;
}

.power-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }

.rank {
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
}

.power-card .team-name {
  font-family: sportsFont;
  font-size: 1.05rem;
  letter-spacing: .3px;
  color: #ffffff;
}

.tag {
  font-size: .85rem;
  color: #c7c7c7;
  padding: 4px 8px;
  border-radius: 999px;
  background: #2e2e2e;
  border: 1px solid #3e3e3e;
  justify-self: end;
  margin-left: 8px;
  margin-right: 20px;
}

.points {
  font-size: .9rem;
  color: #c7c7c7;
  justify-self: end;
}

.pr-note {
  margin-top: 6px;
  font-size: .85rem;
  color: #c7c7c7;
}

