.page-home {
  --home-line: rgba(57, 255, 20, 0.25);
  --home-card-bg: rgba(11, 22, 40, 0.6);
  --home-plain-decor: linear-gradient(135deg, rgba(255, 77, 0, 0.45), rgba(57, 255, 20, 0.16));
}

.page-home .breadcrumb {
  margin: 0.5rem 0 0;
}

.page-home .home-intro__head {
  position: relative;
  padding: 0.75rem 0 1.1rem;
  border-bottom: 2px solid var(--color-line);
}

.page-home .home-intro__head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 96px;
  height: 3px;
  background: var(--color-orange);
  transform: skewX(-12deg);
}

.page-home .home-intro__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.4rem;
  color: var(--color-white);
}

.page-home .home-intro__lede {
  color: var(--color-mist);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

.page-home .console-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .page-home .console-grid {
    grid-template-columns: 1.15fr 1fr 0.85fr;
    gap: 1.25rem;
    align-items: stretch;
  }
}

.page-home .scoreboard {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 360px;
  background: rgba(10, 17, 40, 0.72);
  border: 1px solid var(--home-line);
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.08), 0 18px 40px rgba(0, 0, 0, 0.3);
}

.page-home .scoreboard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 30px solid var(--color-neon);
  border-left: 30px solid transparent;
  z-index: 3;
}

.page-home .scoreboard__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-home .scoreboard__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  opacity: 0.28;
  filter: saturate(1.15);
}

.page-home .scoreboard__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem;
}

.page-home .scoreboard__topline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-home .scoreboard__live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-neon);
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--home-line);
  background: rgba(10, 17, 40, 0.55);
}

.page-home .scoreboard__pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-neon);
  animation: pageHomeLivePulse 1.4s ease-in-out infinite;
}

@keyframes pageHomeLivePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(57, 255, 20, 0); }
}

.page-home .scoreboard__league {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-mist);
}

.page-home .scoreboard__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  color: var(--color-white);
  letter-spacing: 0.02em;
  margin: 0.9rem 0 0.3rem;
  text-transform: uppercase;
}

.page-home .scoreboard__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.5rem 0 0.6rem;
}

.page-home .team-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--color-white);
  max-width: 5em;
  text-align: center;
  line-height: 1.25;
}

.page-home .scoreboard__nums {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-neon);
  line-height: 1;
}

.page-home .scoreboard__num--pulse {
  animation: pageHomeScorePulse 1.2s ease-in-out infinite;
}

@keyframes pageHomeScorePulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(57, 255, 20, 0.7); }
  50% { opacity: 0.65; text-shadow: 0 0 30px rgba(57, 255, 20, 1); }
}

.page-home .scoreboard__colon {
  color: var(--color-white);
}

.page-home .scoreboard__events {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.page-home .event-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-mist);
  background: rgba(10, 17, 40, 0.5);
}

.page-home .event-chip--goal {
  color: var(--color-neon);
  border-color: var(--home-line);
}

.page-home .scoreboard__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.page-home .scoreboard__note {
  font-size: 0.78rem;
  color: var(--color-mist);
}

.page-home .live-panel {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--home-card-bg);
  border: 1px solid var(--color-line);
}

.page-home .live-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--color-orange);
}

.page-home .live-panel__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0;
}

.page-home .live-panel__sort {
  font-size: 0.72rem;
  color: var(--color-mist);
}

.page-home .live-panel__tabs {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-home .live-panel__body {
  flex: 1;
}

.page-home .mini-tabs {
  display: flex;
  gap: 0.2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-line);
  margin: 0 0 0.75rem;
}

.page-home .mini-tabs [role="tab"] {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--color-mist);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  position: relative;
}

.page-home .mini-tabs [role="tab"][aria-selected="true"] {
  color: var(--color-neon);
}

.page-home .mini-tabs [role="tab"][aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: -1px;
  height: 2px;
  background: var(--color-neon);
}

.page-home .mini-tabs [role="tab"]:hover {
  color: var(--color-white);
}

.page-home .live-feature {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

@media (min-width: 480px) {
  .page-home .live-feature {
    grid-template-columns: 150px 1fr;
    align-items: center;
  }
}

.page-home .live-feature__media {
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--color-surface);
}

.page-home .live-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.page-home .live-feature__media--plain {
  background: var(--home-plain-decor);
  position: relative;
}

.page-home .live-feature__media--plain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(245, 247, 250, 0.06) 8px 9px);
}

.page-home .live-feature__text {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.page-home .live-feature__badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-bg-deep);
  background: var(--color-amber);
  padding: 0.2rem 0.55rem;
  transform: skewX(-6deg);
}

.page-home .live-feature__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  text-decoration: none;
}

.page-home .live-feature__link:hover {
  color: var(--color-neon);
}

.page-home .live-feature__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-mist);
}

.page-home .mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .mini-list__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--color-line);
}

.page-home .mini-list__item:last-child {
  border-bottom: none;
}

.page-home .mini-list__live,
.page-home .mini-list__wait {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-bg-deep);
  background: var(--color-neon);
  padding: 0.18rem 0.42rem;
  transform: skewX(-6deg);
}

.page-home .mini-list__wait {
  background: var(--color-mist);
}

.page-home .mini-list__link {
  flex: 1;
  min-width: 0;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .mini-list__link:hover {
  color: var(--color-neon);
}

.page-home .mini-list__meta {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-mist);
}

.page-home .schedule-panel {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--home-card-bg);
  border: 1px solid var(--color-line);
}

.page-home .schedule-panel__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0 0 0.2rem;
}

.page-home .schedule-panel__sub {
  font-size: 0.78rem;
  color: var(--color-mist);
  margin: 0 0 0.7rem;
}

.page-home .schedule-panel__media {
  display: block;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 0.85rem;
  overflow: hidden;
  border: 1px solid var(--color-line);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.page-home .schedule-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.page-home .schedule-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .schedule-timeline__item {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-left: 1px solid var(--color-line);
}

.page-home .schedule-timeline__item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0.85rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.page-home .schedule-timeline__time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-neon);
}

.page-home .schedule-timeline__match {
  font-size: 0.88rem;
  color: var(--color-white);
  line-height: 1.4;
  margin: 0.12rem 0 0.35rem;
}

.page-home .schedule-timeline__bar {
  height: 3px;
  background: rgba(174, 184, 194, 0.18);
  border-radius: 2px;
  overflow: hidden;
  margin: 0.25rem 0 0.1rem;
}

.page-home .schedule-timeline__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-orange), var(--color-amber));
}

.page-home .schedule-timeline__countdown {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-mist);
}

.page-home .stat-band {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: rgba(27, 58, 75, 0.18);
}

.page-home .stat-band__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .page-home .stat-band__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .stat-band__list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0.75rem;
  background: rgba(10, 17, 40, 0.4);
  border-left: 2px solid var(--color-orange);
}

.page-home .stat-band__digit {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.page-home .stat-band__list li span:last-child {
  font-size: 0.8rem;
  color: var(--color-mist);
}

.page-home .section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.page-home .section-bar__more {
  flex: 0 0 auto;
}

.page-home .section__sub {
  color: var(--color-mist);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 60em;
}

.page-home .insight-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .page-home .insight-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.page-home .insight-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(11, 22, 40, 0.55);
  border: 1px solid var(--color-line);
  overflow: hidden;
}

@media (min-width: 560px) {
  .page-home .insight-card {
    grid-template-columns: 220px 1fr;
  }
}

.page-home .insight-card--split {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .page-home .insight-card--split {
    grid-template-columns: 1fr 140px;
  }
}

.page-home .insight-card__media {
  min-height: 160px;
  overflow: hidden;
  background: var(--color-surface);
}

.page-home .insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.page-home .insight-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
}

.page-home .insight-card__body--plain {
  min-width: 0;
}

.page-home .tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  text-transform: uppercase;
  border: 1px solid rgba(255, 77, 0, 0.45);
  padding: 0.22rem 0.55rem;
  margin-bottom: 0.6rem;
}

.page-home .insight-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-white);
  margin: 0 0 0.5rem;
}

.page-home .insight-card__summary {
  font-size: 0.88rem;
  color: var(--color-mist);
  line-height: 1.6;
  margin: 0 0 0.9rem;
}

.page-home .insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
}

.page-home .insight-card__rating {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-neon);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 0.22rem 0.5rem;
  white-space: nowrap;
}

.page-home .insight-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-amber);
  text-decoration: none;
  white-space: nowrap;
}

.page-home .insight-card__link:hover {
  color: var(--color-neon);
}

.page-home .insight-card__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 130px;
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.22), rgba(57, 255, 20, 0.12));
  position: relative;
  overflow: hidden;
}

.page-home .insight-card__decor span {
  width: 14px;
  height: 54px;
  background: var(--color-orange);
  transform: skewX(-12deg);
  opacity: 0.8;
}

.page-home .insight-card__decor span:nth-child(2) {
  height: 78px;
  background: var(--color-neon);
  opacity: 0.5;
}

.page-home .insight-card__decor span:nth-child(3) {
  height: 42px;
  background: var(--color-amber);
}

.page-home .report-section {
  background: linear-gradient(180deg, transparent, rgba(27, 58, 75, 0.28));
}

.page-home .report-tabs {
  margin-top: 1rem;
}

.page-home .report-tabs__head {
  display: flex;
  gap: 0.35rem;
  border-bottom: 2px solid var(--color-line);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 1rem;
}

.page-home .report-tabs__head::-webkit-scrollbar {
  display: none;
}

.page-home .report-tabs__head [role="tab"] {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--color-mist);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.page-home .report-tabs__head [role="tab"][aria-selected="true"] {
  color: var(--color-orange);
}

.page-home .report-tabs__head [role="tab"][aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -2px;
  height: 3px;
  background: var(--color-orange);
  transform: skewX(-12deg);
}

.page-home .report-tabs__head [role="tab"]:hover {
  color: var(--color-white);
}

.page-home .report-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-home .report-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.6rem 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: rgba(10, 17, 40, 0.55);
  border-left: 3px solid var(--color-surface);
}

.page-home .report-item:hover {
  border-left-color: var(--color-neon);
}

@media (min-width: 600px) {
  .page-home .report-item {
    grid-template-columns: 72px 1fr auto;
  }
}

.page-home .report-item__score {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-orange);
}

.page-home .report-item__text {
  min-width: 0;
}

.page-home .report-item__match {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--color-mist);
  margin-bottom: 0.2rem;
}

.page-home .report-item__headline {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
  line-height: 1.4;
}

.page-home .report-item__headline:hover {
  color: var(--color-amber);
}

.page-home .report-item__link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-amber);
  text-decoration: none;
  white-space: nowrap;
  grid-column: 2;
  justify-self: start;
}

@media (min-width: 600px) {
  .page-home .report-item__link {
    grid-column: auto;
    justify-self: end;
  }
}

.page-home .report-item__link:hover {
  color: var(--color-neon);
}

.page-home .device-strip {
  position: relative;
  background: linear-gradient(90deg, var(--color-bg-deep), var(--color-surface), var(--color-bg-deep));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
  padding: 1rem 0;
}

.page-home .device-strip__viewport {
  overflow: hidden;
}

.page-home .device-strip__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: pageHomeDeviceScroll 26s linear infinite;
}

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

.page-home .device-strip__item {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.page-home .device-strip__item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-neon);
  display: inline-block;
  transform: skewX(-12deg);
}

.page-home .device-cta__box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--color-line);
  background: linear-gradient(135deg, rgba(255, 77, 0, 0.08), rgba(27, 58, 75, 0.5));
}

@media (min-width: 640px) {
  .page-home .device-cta__box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.page-home .device-cta__text {
  color: var(--color-white);
  line-height: 1.65;
  max-width: 56em;
  margin: 0;
}

.page-home .trust-section {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-line);
}

.page-home .trust-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .page-home .trust-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.page-home .trust-block__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0 0 0.75rem;
}

.page-home .trust-block__text {
  color: var(--color-mist);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 52em;
  margin: 0;
}

.page-home .trust-block__points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.page-home .trust-block__points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--color-white);
}

.page-home .trust-block__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  background: var(--color-neon);
  transform: skewX(-12deg);
}

.page-home .trust-side {
  padding: 1.25rem;
  background: rgba(27, 58, 75, 0.2);
  border: 1px solid var(--color-line);
}

.page-home .trust-side__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.85rem;
}

.page-home .trust-timeline {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}

.page-home .trust-timeline li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.1rem;
  font-size: 0.88rem;
  color: var(--color-white);
}

.page-home .trust-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--color-neon);
}

.page-home .trust-side__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .scoreboard__num--pulse,
  .page-home .scoreboard__pulse-dot,
  .page-home .device-strip__track {
    animation: none;
  }
}
