/* ===== 首页 Home 页面专属样式 ===== */
.page-home {
  --badge-eng: #ff4b4b;
  --badge-spa: #f7c948;
  --badge-ita: #36c5a1;
  --badge-ger: #3b82f6;
  --badge-fra: #334155;
  --badge-nba: #ff6b35;
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  padding-top: var(--header-h);
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home h2 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.page-home .section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 5px 14px;
  background: var(--accent-soft);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ===== Hero ===== */
.page-home .home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 120px;
  box-sizing: border-box;
  isolation: isolate;
  overflow: hidden;
}

.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.page-home .home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 15, 40, 0.94) 0%,
    rgba(10, 31, 68, 0.78) 42%,
    rgba(255, 107, 53, 0.2) 100%
  );
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
}

.page-home .home-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 53, 0.55);
  border-radius: 999px;
  padding: 7px 16px;
  background: var(--accent-soft);
  margin-bottom: 18px;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 12vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--text-primary);
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.page-home .home-hero__title::after {
  content: "";
  display: block;
  width: 88px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
  margin-top: 18px;
}

.page-home .home-hero__lead {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.page-home .home-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-home .home-hero__btn {
  padding: 14px 28px;
  font-size: 15px;
}

.page-home .home-hero__anchor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

.page-home .home-hero__anchor:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Hero 数据卡片 */
.page-home .home-hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.page-home .home-hero__stat {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform var(--ease), border-color var(--ease);
}

.page-home .home-hero__stat:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.page-home .home-hero__stat--primary {
  background: var(--accent);
  border-color: transparent;
}

.page-home .home-hero__stat--primary .home-hero__tag {
  color: var(--bg-deep);
}

.page-home .home-hero__num {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--text-primary);
}

.page-home .home-hero__stat--primary .home-hero__num {
  color: var(--bg-deep);
}

.page-home .home-hero__tag {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Hero 实时数据滚动条 */
.page-home .home-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(6, 15, 40, 0.9);
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--accent);
  overflow: hidden;
  padding: 10px 0;
  backdrop-filter: blur(8px);
}

.page-home .home-ticker__viewport {
  overflow: hidden;
}

.page-home .home-ticker__track {
  display: flex;
  width: max-content;
  animation: page-home-ticker 34s linear infinite;
}

.page-home .home-ticker:hover .home-ticker__track,
.page-home .home-ticker:focus-within .home-ticker__track {
  animation-play-state: paused;
}

.page-home .home-ticker__group {
  display: flex;
  flex-shrink: 0;
}

.page-home .home-ticker__item {
  padding: 4px 28px;
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes page-home-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== 周末双赛入口 ===== */
.page-home .home-quick {
  background: var(--bg-secondary);
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.page-home .home-quick__head {
  margin-bottom: 28px;
}

.page-home .home-quick__desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

.page-home .home-quick__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.page-home .home-quick__chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  scroll-snap-align: start;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.page-home .home-quick__chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.page-home .home-quick__badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--bg-deep);
}

.page-home .home-quick__badge--eng {
  background: var(--badge-eng);
  color: #fff;
}

.page-home .home-quick__badge--spa {
  background: var(--badge-spa);
  color: var(--bg-deep);
}

.page-home .home-quick__badge--ita {
  background: var(--badge-ita);
  color: var(--bg-deep);
}

.page-home .home-quick__badge--ger {
  background: var(--badge-ger);
  color: #fff;
}

.page-home .home-quick__badge--fra {
  background: var(--badge-fra);
  color: var(--text-primary);
}

.page-home .home-quick__badge--nba {
  background: var(--badge-nba);
  color: var(--bg-deep);
}

.page-home .home-quick__badge--more {
  background: transparent;
  border: 1px dashed var(--accent);
  color: var(--accent);
}

.page-home .home-quick__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-quick__name {
  font-weight: 700;
  font-size: 15px;
}

.page-home .home-quick__time {
  font-size: 12px;
  color: var(--text-secondary);
}

/* details 子菜单 */
.page-home .home-quick__details {
  position: relative;
  flex: 0 0 auto;
}

.page-home .home-quick__details summary {
  list-style: none;
  cursor: pointer;
}

.page-home .home-quick__details summary::-webkit-details-marker {
  display: none;
}

.page-home .home-quick__submenu {
  display: none;
  margin-top: 8px;
  min-width: 200px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}

.page-home .home-quick__details[open] .home-quick__submenu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.page-home .home-quick__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  transition: background var(--ease), color var(--ease);
}

.page-home .home-quick__submenu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.page-home .home-quick__photo {
  margin-top: 40px;
  overflow: hidden;
  max-height: 260px;
}

.page-home .home-quick__photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

/* ===== 射手榜评测 ===== */
.page-home .home-scorer {
  background: var(--bg-primary);
  padding: 72px 0;
}

.page-home .home-scorer__layout {
  display: grid;
  gap: 32px;
  margin-bottom: 36px;
}

.page-home .home-scorer__intro p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.page-home .home-scorer__chart {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-home .home-scorer__chart img {
  width: 100%;
  height: auto;
}

.page-home .home-scorer__tablewrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-md);
}

.page-home .home-scorer__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.page-home .home-scorer__table th {
  text-align: left;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.page-home .home-scorer__table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.page-home .home-scorer__table tr:first-child td {
  color: var(--accent);
  font-weight: 700;
}

.page-home .home-scorer__table tr:last-child td {
  border-bottom: 0;
}

/* ===== 正式版对比 ===== */
.page-home .home-compare {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-primary) 65%, rgba(255, 107, 53, 0.08) 100%);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-home .home-compare__head p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 28px;
}

.page-home .home-compare__board {
  display: grid;
  gap: 32px;
  max-width: 860px;
  margin-bottom: 28px;
}

.page-home .home-compare__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.page-home .home-compare__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.page-home .home-compare__rate {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 18px;
}

.page-home .home-compare__barwrap {
  display: grid;
  gap: 8px;
}

.page-home .home-compare__bar {
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  box-sizing: border-box;
  white-space: nowrap;
}

.page-home .home-compare__bar--fast {
  background: var(--accent);
  color: var(--bg-deep);
  width: 60%;
}

.page-home .home-compare__bar--mid {
  background: var(--accent);
  color: var(--bg-deep);
  width: 75%;
}

.page-home .home-compare__bar--industry {
  background: var(--data-vis);
  color: var(--text-primary);
  width: 100%;
}

.page-home .home-compare__foot {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.page-home .home-compare__meta {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== 球员数据推荐 ===== */
.page-home .home-players {
  background: var(--bg-secondary);
  padding: 72px 0;
}

.page-home .home-players__head p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 28px;
}

.page-home .home-players__grid {
  display: grid;
  gap: 20px;
}

.page-home .home-players__card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform var(--ease), border-color var(--ease);
}

.page-home .home-players__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.page-home .home-players__photo {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-players__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-players__photo--alt,
.page-home .home-players__photo--alt2 {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
}

.page-home .home-players__monogram {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.92;
  text-shadow: 0 8px 32px rgba(255, 107, 53, 0.28);
}

.page-home .home-players__photo--alt2 .home-players__monogram {
  color: var(--success);
  text-shadow: 0 8px 32px rgba(54, 197, 161, 0.24);
}

.page-home .home-players__body {
  padding: 20px;
}

.page-home .home-players__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--text-primary);
}

.page-home .home-players__pos {
  color: var(--accent);
  font-size: 13px;
  margin: 0 0 16px;
}

.page-home .home-players__dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.page-home .home-players__dl div {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
}

.page-home .home-players__dl dt {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.page-home .home-players__dl dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
}

.page-home .home-players__foot {
  margin-top: 32px;
  text-align: center;
}

/* ===== 服务选择指南 ===== */
.page-home .home-guide {
  background: var(--bg-primary);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.page-home .home-guide__panel {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  gap: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.page-home .home-guide__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
}

.page-home .home-guide__copy p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.page-home .home-guide__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 18px;
}

.page-home .home-guide__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-home .home-guide__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.page-home .home-guide__list strong {
  display: block;
  color: var(--text-primary);
  font-size: 15px;
  margin-bottom: 4px;
}

.page-home .home-guide__list p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.page-home .home-guide__visual {
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, transparent 50%), var(--bg-surface);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 20px;
  align-content: center;
}

.page-home .home-guide__steps {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.page-home .home-guide__step {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 13px;
  border: 1px solid var(--border);
}

.page-home .home-guide__step--active {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: transparent;
  font-weight: 700;
}

.page-home .home-guide__note {
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin: 0;
}

.page-home .home-guide__faq {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.02);
}

.page-home .home-guide__faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  padding: 12px 0;
}

.page-home .home-guide__faq summary::-webkit-details-marker {
  display: none;
}

.page-home .home-guide__faq[open] summary {
  color: var(--accent);
}

.page-home .home-guide__faq p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  padding: 0 0 12px;
  margin: 0;
}

/* ===== 用户评价与专家解读 ===== */
.page-home .home-voices {
  background: var(--bg-deep);
  padding: 72px 0;
}

.page-home .home-voices__head {
  margin-bottom: 32px;
}

.page-home .home-voices__grid {
  display: grid;
  gap: 20px;
}

.page-home .home-voices__quote {
  margin: 0;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.page-home .home-voices__quote::before {
  content: "“";
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  font-family: var(--font-display);
  position: absolute;
  top: 8px;
  right: 16px;
  opacity: 0.35;
}

.page-home .home-voices__quote blockquote {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
}

.page-home .home-voices__quote figcaption {
  font-size: 13px;
  color: var(--text-secondary);
}

.page-home .home-voices__expert {
  padding: 24px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 12px;
}

.page-home .home-voices__expert-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.page-home .home-voices__expert p {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-home .home-voices__rating {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--border);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-home .home-voices__score {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
}

.page-home .home-voices__count {
  color: var(--text-secondary);
  font-size: 14px;
}

.page-home .home-voices__link {
  margin-left: auto;
  color: var(--text-primary);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color var(--ease);
}

.page-home .home-voices__link:hover {
  color: var(--accent);
}

.page-home .home-voices__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.page-home .home-voices__trust-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .home-voices__trust-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
}

.page-home .home-voices__trust-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== 桌面端布局增强 ===== */
@media (min-width: 768px) {
  .page-home h2 {
    font-size: 32px;
  }

  .page-home .home-hero__stats {
    width: 240px;
    margin-left: auto;
  }

  .page-home .home-players__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .page-home .home-players__card:nth-child(2) {
    transform: translateY(28px);
  }

  .page-home .home-players__card:nth-child(2):hover {
    transform: translateY(24px);
  }

  .page-home .home-players__card:nth-child(3) {
    transform: translateY(8px);
  }

  .page-home .home-voices__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-voices__expert {
    grid-column: 1 / -1;
  }

  .page-home .home-voices__trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home {
    padding-top: 0;
  }

  .page-home .home-hero {
    min-height: 100vh;
    padding: 0 0 72px;
  }

  .page-home .home-hero__inner {
    display: grid;
    justify-items: start;
    align-content: center;
    padding-left: 8%;
    padding-right: 8%;
  }

  .page-home .home-hero__lead {
    font-size: 16px;
    max-width: 520px;
  }

  .page-home .home-hero__stats {
    position: absolute;
    right: 8%;
    top: 50%;
    width: 260px;
    transform: translateY(-36%);
    margin-top: 0;
  }

  .page-home .home-hero__stat:nth-child(2) {
    margin-left: 28px;
  }

  .page-home .home-hero__stat:nth-child(3) {
    margin-left: 56px;
  }

  .page-home .home-hero__title {
    font-size: clamp(72px, 10vw, 116px);
  }
}

@media (min-width: 1200px) {
  .page-home .home-scorer__layout {
    grid-template-columns: 380px 1fr;
    align-items: center;
    gap: 48px;
  }

  .page-home .home-guide__panel {
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 40px;
  }

  .page-home .home-voices__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-home .home-voices__expert {
    grid-column: auto;
  }
}

/* ===== 无障碍：减少动效 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-ticker__track {
    animation: none;
  }

  .page-home .home-hero__stat,
  .page-home .home-quick__chip,
  .page-home .home-players__card {
    transition: none;
  }
}
