.page-home {
  --home-gold-text: linear-gradient(120deg, #D4A843 0%, #F2C76E 100%);
  --home-panel: rgba(21, 26, 34, 0.76);
  --home-grid-line: rgba(212, 168, 67, 0.07);
  --home-blue-glow: rgba(61, 183, 255, 0.18);
  --home-neon-glow: rgba(200, 255, 46, 0.12);
}

.page-home .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 96px 0 120px;
}

.page-home .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  z-index: 0;
}

.page-home .hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right, var(--home-grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--home-grid-line) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(circle at 72% 42%, #000 30%, transparent 82%);
  mask-image: radial-gradient(circle at 72% 42%, #000 30%, transparent 82%);
}

.page-home .hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 32%, var(--home-blue-glow) 0%, transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(212, 168, 67, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 42% 68%, var(--home-neon-glow) 0%, transparent 38%);
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-home .hero-vertical-tag {
  display: none;
}

.page-home .hero-copy {
  max-width: 640px;
}

.page-home .hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .hero-kicker-line {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  flex-shrink: 0;
}

.page-home .hero-kicker-text {
  color: var(--color-gold-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.page-home .hero-title {
  font-family: var(--font-headline);
  font-size: clamp(56px, 11vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin: 0 0 20px;
}

.page-home .hero-title::after {
  content: '';
  display: block;
  width: 76px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
  margin-top: 24px;
}

.page-home .hero-lede {
  color: var(--color-text-dim);
  font-size: 16px;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 0 28px;
}

.page-home .hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.page-home .hero-meta-item {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--color-text-dim);
}

.page-home .hero-meta-item .data-number {
  color: var(--color-gold-bright);
  font-size: 18px;
  margin-right: 4px;
}

.page-home .hero-live-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 560px;
}

.page-home .live-board {
  display: block;
  width: 100%;
  background: linear-gradient(150deg, rgba(21, 26, 34, 0.92) 0%, rgba(10, 12, 16, 0.82) 100%);
  border: 1px solid rgba(212, 168, 67, 0.34);
  border-radius: 16px;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .live-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue) 70%);
}

.page-home .live-board:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold-bright);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.page-home .live-board-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

.page-home .live-status {
  background: var(--color-neon);
  color: #0A0C10;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: 4px;
  padding: 3px 8px;
}

.page-home .live-competition {
  color: var(--color-blue);
  font-weight: 600;
}

.page-home .live-minute {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--color-gold-bright);
}

.page-home .live-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.page-home .live-team {
  flex: 1;
  min-width: 0;
}

.page-home .live-team-away {
  text-align: right;
}

.page-home .live-team-name {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .live-team-stat {
  font-size: 12px;
  color: var(--color-text-dim);
}

.page-home .live-score-block {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-home .live-score-num {
  font-family: var(--font-data);
  font-size: clamp(44px, 7vw, 68px);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.page-home .live-score-colon {
  font-family: var(--font-data);
  font-size: 40px;
  color: var(--color-text-dim);
}

.page-home .live-match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
  color: var(--color-text-dim);
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-bottom: 8px;
}

.page-home .live-record-bar {
  font-size: 12px;
  color: var(--color-blue);
  background: rgba(61, 183, 255, 0.1);
  border-radius: 6px;
  padding: 7px 10px;
}

.page-home .hero-live-note {
  font-size: 12px;
  color: var(--color-text-dim);
  letter-spacing: 0.04em;
}

.page-home .hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
  font-size: 12px;
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
}

.page-home .hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  display: block;
}

.page-home .section-index {
  font-family: var(--font-data);
  font-size: 15px;
  color: var(--color-blue);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.page-home .section-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  color: var(--color-text);
  margin: 4px 0 0;
}

.page-home .home-arena {
  position: relative;
}

.page-home .arena-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .arena-intro {
  max-width: 720px;
  color: var(--color-text-dim);
  line-height: 1.7;
  margin: 0;
}

.page-home .arena-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .league-column {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-home .league-panel {
  display: flex;
  flex-direction: column;
}

.page-home .panel-heading {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.16), transparent 70%);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.page-home .panel-title {
  color: var(--color-gold-bright);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.page-home .panel-note {
  font-size: 12px;
  color: var(--color-text-dim);
  white-space: nowrap;
}

.page-home .league-list {
  display: flex;
  flex-direction: column;
}

.page-home .league-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 45, 55, 0.7);
  transition: background 0.25s, padding-left 0.25s;
}

.page-home .league-item:last-child {
  border-bottom: 0;
}

.page-home .league-item:hover {
  background: rgba(212, 168, 67, 0.08);
  padding-left: 26px;
}

.page-home .league-count {
  font-size: 12px;
  color: var(--color-text-dim);
  font-family: var(--font-data);
  letter-spacing: 0.04em;
}

.page-home .league-panel-foot {
  padding: 12px 20px;
  font-size: 12px;
  color: var(--color-blue);
  background: rgba(61, 183, 255, 0.08);
}

.page-home .live-stream-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .stream-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.page-home .stream-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 0 4px rgba(200, 255, 46, 0.15);
  animation: homePulse 1.6s infinite;
}

@keyframes homePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-home .stream-badge {
  margin-left: auto;
  font-size: 12px;
  color: var(--color-blue);
  background: rgba(61, 183, 255, 0.1);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
}

.page-home .stream-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .stream-card {
  display: block;
  text-decoration: none;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-home .stream-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  background: #181F29;
}

.page-home .stream-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-dim);
  margin-bottom: 12px;
}

.page-home .stream-time {
  font-family: var(--font-data);
  font-size: 16px;
  color: var(--color-gold-bright);
}

.page-home .stream-card-versus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .stream-team {
  font-weight: 800;
  font-size: 16px;
  color: var(--color-text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .stream-team:last-child {
  text-align: right;
}

.page-home .stream-score {
  font-family: var(--font-data);
  font-size: 28px;
  color: var(--color-gold);
  font-weight: 700;
}

.page-home .stream-bar {
  font-size: 12px;
  color: var(--color-text-dim);
  background: rgba(10, 12, 16, 0.6);
  border-radius: 6px;
  padding: 7px 10px;
}

.page-home .stream-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.page-home .stream-foot span {
  font-size: 12px;
  color: var(--color-text-dim);
}

.page-home .home-mobile {
  position: relative;
}

.page-home .mobile-split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.page-home .mobile-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.page-home .mobile-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.page-home .mobile-chip {
  position: absolute;
  background: rgba(10, 12, 16, 0.86);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
}

.page-home .mobile-chip-top {
  top: 16px;
  right: -8px;
  color: var(--color-blue);
  border-color: rgba(61, 183, 255, 0.5);
}

.page-home .mobile-chip-bottom {
  bottom: 16px;
  left: -8px;
}

.page-home .mobile-content {
  max-width: 560px;
}

.page-home .mobile-intro {
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.page-home .mobile-feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .mobile-feature-list li {
  padding-left: 20px;
  position: relative;
  color: var(--color-text-dim);
  font-size: 15px;
  line-height: 1.6;
}

.page-home .mobile-feature-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 20px;
}

.page-home .mobile-feature-list strong {
  color: var(--color-text);
}

.page-home .mobile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .download-panel {
  background:
    linear-gradient(140deg, rgba(21, 26, 34, 0.9), rgba(10, 12, 16, 0.92)),
    repeating-linear-gradient(-45deg, rgba(212, 168, 67, 0.03) 0 2px, transparent 2px 12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.page-home .download-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-neon), transparent);
}

.page-home .download-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .download-intro {
  color: var(--color-text-dim);
  line-height: 1.7;
  margin: 0;
}

.page-home .download-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

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

.page-home .download-stat .data-number {
  font-size: 32px;
  color: var(--color-gold-bright);
}

.page-home .download-stat span:last-child {
  font-size: 13px;
  color: var(--color-text-dim);
}

.page-home .download-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .download-tags .tag {
  background: var(--color-panel);
  color: var(--color-text-dim);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
}

.page-home .download-tags .tag-active {
  color: var(--color-neon);
  border-color: rgba(200, 255, 46, 0.5);
  background: rgba(200, 255, 46, 0.08);
}

.page-home .download-note {
  font-size: 13px;
  color: var(--color-blue);
}

.page-home .download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .download-visual {
  position: relative;
}

.page-home .download-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.page-home .insights-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .insights-lead {
  margin: 0;
  color: var(--color-text-dim);
  line-height: 1.7;
  max-width: 560px;
}

.page-home .insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.page-home .insight-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.page-home .insight-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.page-home .insight-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-home .insight-card-meta span {
  font-size: 12px;
  color: var(--color-blue);
  border: 1px solid rgba(61, 183, 255, 0.4);
  border-radius: 999px;
  padding: 3px 12px;
}

.page-home .insight-card-meta span:last-child {
  color: var(--color-text-dim);
  border-color: var(--color-border);
}

.page-home .insight-card-title {
  font-size: 20px;
  line-height: 1.45;
  color: var(--color-text);
  margin: 0;
  font-weight: 900;
  font-family: var(--font-body);
}

.page-home .insight-card-desc {
  color: var(--color-text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.page-home .insight-card-foot {
  font-size: 13px;
  color: var(--color-gold);
  margin-top: auto;
  font-weight: 700;
}

.page-home .history-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.1), rgba(61, 183, 255, 0.06));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.page-home .history-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .history-text h3 {
  font-size: 24px;
  color: var(--color-text);
  margin: 0;
}

.page-home .history-text p {
  color: var(--color-text-dim);
  line-height: 1.7;
  margin: 0;
}

.page-home .history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-home .history-stats div {
  background: rgba(10, 12, 16, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .history-stats .data-number {
  font-size: 24px;
  color: var(--color-gold-bright);
}

.page-home .history-stats div span:last-child {
  font-size: 12px;
  color: var(--color-text-dim);
}

.page-home .history-visual {
  min-width: 0;
}

.page-home .history-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: block;
}

.page-home .support-panel {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .support-update {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .update-count {
  align-self: flex-start;
  color: var(--color-neon);
  background: rgba(200, 255, 46, 0.08);
  border: 1px solid rgba(200, 255, 46, 0.32);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-home .support-update p {
  color: var(--color-text-dim);
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
}

.page-home .support-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .support-col {
  background: rgba(10, 12, 16, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.page-home .support-col-title {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: var(--color-gold-bright);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.page-home .support-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .support-col li {
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.55;
}

.page-home .support-col a {
  color: var(--color-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 183, 255, 0.3);
}

.page-home .support-col a:hover {
  color: var(--color-gold-bright);
  border-color: var(--color-gold);
}

.page-home .support-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  font-size: 12px;
  color: var(--color-text-dim);
}

@media (min-width: 768px) {
  .page-home .mobile-split {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .page-home .mobile-visual {
    flex: 0 0 44%;
  }

  .page-home .mobile-content {
    flex: 1;
  }

  .page-home .download-panel {
    flex-direction: row;
    align-items: center;
  }

  .page-home .download-copy {
    flex: 1.1;
  }

  .page-home .download-visual {
    flex: 0 0 42%;
  }

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

  .page-home .history-block {
    flex-direction: row;
    align-items: center;
  }

  .page-home .history-text {
    flex: 1;
  }

  .page-home .history-visual {
    flex: 1;
  }

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

@media (min-width: 1024px) {
  .page-home .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .page-home .hero-vertical-tag {
    display: block;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    color: var(--color-text-dim);
    font-size: 12px;
    letter-spacing: 0.3em;
    white-space: nowrap;
    z-index: 5;
  }

  .page-home .hero-copy {
    flex: 1 1 55%;
    max-width: 640px;
  }

  .page-home .hero-live-wrap {
    flex: 0 1 45%;
    max-width: 560px;
    align-items: flex-end;
  }

  .page-home .home-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--color-bg);
    clip-path: polygon(0 25%, 100% 0, 100% 100%, 0 100%);
    z-index: 3;
  }

  .page-home .arena-split {
    flex-direction: row;
    align-items: stretch;
  }

  .page-home .league-column {
    flex: 0 0 40%;
  }

  .page-home .live-stream-column {
    flex: 1;
  }

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

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

  .page-home .support-panel {
    padding: 40px;
  }

  .page-home .download-panel {
    padding: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .stream-live-dot {
    animation: none;
  }

  .page-home .live-board,
  .page-home .stream-card,
  .page-home .insight-card {
    transition: none;
  }
}
