@font-face {
  font-family: 'qomolangma-uchen-sarchung';
  src: url('fonts/qomolangma-uchen-sarchung.ttf') format('truetype');
  font-display: swap;
}
html, body {
  font-family: 'qomolangma-uchen-sarchung', Arial, sans-serif !important;
}
header {
  color: #fff;
  text-align: center;
  padding: 0 0 16px 0;
  box-shadow: 0 2px 8px rgba(23,64,139,0.08);
  background: none;
}
.nba-logo {
  width: 80px;
  vertical-align: middle;
  margin-bottom: 8px;
}
.nba-banner-logo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  padding: 0 0 8px 0;
  vertical-align: top;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: 700;
}
.teams-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 32px 2vw;
}
.team-card {
  flex: 0 1 calc(25% - 32px);
  max-width: calc(25% - 32px);
  min-width: 180px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #fafdff 0%, #e9f0fa 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(23,64,139,0.10), 0 1px 3px rgba(23,64,139,0.06);
  border: 1px solid #e3e8f0;
  padding: 16px 10px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s cubic-bezier(.4,1.4,.6,1), box-shadow 0.18s cubic-bezier(.4,1.4,.6,1);
  line-height: 1.5;
  margin-bottom: 10px;
}
.team-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 18px rgba(23,64,139,0.16), 0 1.5px 6px rgba(23,64,139,0.10);
  border-color: #b3c6e6;
}
.team-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  padding: 6px;
}
.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #17408b;
  margin: 0 0 6px 0;
  margin-bottom: 14px;
}
.team-name > div:first-child {
  font-family: 'qomolangma-uchen-sarchung', sans-serif;
  font-size: 1em;
  text-align: center;
}
.team-en {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-size: 0.98em;
  color: #c94a4e;
  text-align: left;
  margin-left: 0;
}
.team-card > .team-name,
.team-card > .team-city,
.team-card > .team-info {
  text-align: center;
  background: rgba(255,255,255,0.85);
  border-radius: 8px;
  padding: 6px 0 6px 0;
  margin-bottom: 12px;
}
.team-en {
  text-align: center;
}
.team-card > .team-name,
.team-card > .team-city {
  margin-bottom: 24px;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: none;
  background: none;
  border-radius: 0;
  padding: 0;
}
.team-card > .team-info {
  margin-bottom: 24px;
  line-height: 1.5;
  border-bottom: 1.5px solid #e0e3e8;
  padding-bottom: 10px;
}
.team-card > .team-info:last-child {
  border-bottom: none;
}
.team-info > b,
.team-card > .team-info > b {
  color: #17408b;
}
.team-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
}
.star-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  border: 1px solid #e3e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23,64,139,0.10);
  z-index: 2;
}
.team-info > div {
  margin-top: 38px;
  width: 100%;
}
.star-names {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  width: 100%;
}
.star-tibetan {
  font-family: 'qomolangma-uchen-sarchung', sans-serif;
  font-size: 1em;
  color: #17408b;
  margin-bottom: 2px;
  text-align: center;
}
.star-en {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-size: 0.92em;
  color: #c94a4e;
  text-align: center;
  margin-left: 3px;
}
.team-city {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #17408b;
  margin-bottom: 8px;
  margin-bottom: 10px;
}
.team-city > div:first-child {
  font-family: 'qomolangma-uchen-sarchung', sans-serif;
  font-size: 1em;
  text-align: center;
}
.team-city .team-en {
  font-size: 0.95em;
  color: #c94a4e;
  margin-left: 8px;
}
@media (max-width: 1100px) {
  .team-card {
    flex: 0 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
@media (max-width: 700px) {
  .team-card {
    flex: 0 1 98vw;
    max-width: 98vw;
    min-width: 0;
    padding: 8px 2px 8px 2px;
  }
  .teams-container {
    gap: 10px;
    padding: 10px 1vw;
  }
  .nba-logo {
    width: 54px;
  }
  header h1 {
    font-size: 1.3rem;
  }
  .team-logo {
    width: 38px;
    height: 38px;
    padding: 2px;
  }
  .star-avatar {
    width: 22px;
    height: 22px;
    top: -8px;
  }
}
.nba-footer {
  background: #17408b;
  color: #fff;
  padding: 28px 2vw 18px 2vw;
  margin-top: 48px;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
}
.footer-links a {
  color: #ffd700;
  text-decoration: none;
  font-size: 1.08em;
  margin: 0 6px;
  transition: color 0.18s;
  padding: 2px 8px;
  border-radius: 4px;
}
.footer-links a:hover {
  color: #fff;
  background: #c9082a;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .footer-links {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }
  .footer-links a {
    font-size: 1em;
    margin: 2px 0;
    padding: 4px 10px;
  }
}
.article-container {
  max-width: 820px;
  margin: 48px auto 32px auto;
  background: linear-gradient(135deg, #fff 80%, #e3eaff 100%);
  box-shadow: 0 6px 32px 0 rgba(23,64,139,0.10), 0 1.5px 6px 0 rgba(23,64,139,0.08);
  border-radius: 22px;
  padding: 44px 7vw 38px 7vw;
  color: #222;
  line-height: 2.1;
  font-size: 1.18em;
  letter-spacing: 0.01em;
}
.article-container h1 {
  color: #17408b;
  font-size: 2.1em;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.article-container strong, .article-container b {
  color: #c9082a;
}
.article-container > *:not(:first-child) {
  margin-top: 1.2em;
}
.article-content {
  white-space: pre-line;
  font-size: 0.96em;
  color: #222;
  text-align: left;
}
.article-section-title {
  display: block;
  color: #17408B;
  font-size: 1.18em;
  font-weight: bold;
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
.article-content .article-section-title {
  color: #17408B !important;
}
@media (max-width: 700px) {
  .article-container {
    padding: 18px 2vw 18px 2vw;
    font-size: 1em;
  }
  .article-container h1 {
    font-size: 1.3em;
  }
} 