.results-focus {
  background:
    linear-gradient(180deg, #fff 0, #fff 58%, var(--surface-soft) 58%, var(--surface-soft) 100%);
}

.result-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.result-highlight {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.result-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 22px rgba(255, 212, 41, 0.2);
}

.result-highlight-icon .icon {
  display: block;
  width: 22px;
  height: 22px;
}

.result-highlight:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.result-highlight strong,
.result-highlight > span:not(.result-highlight-icon) {
  display: block;
}

.result-highlight strong {
  margin-bottom: 8px;
  font-family: "Changa One", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.result-highlight > span:not(.result-highlight-icon) {
  color: var(--muted);
  font-weight: 700;
}

.sheet-frame {
  overflow: hidden;
  min-height: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.sheet-frame iframe {
  display: block;
  width: 100%;
  height: 78vh;
  min-height: 680px;
  border: 0;
}

.result-category-stack {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.result-category {
  min-width: 0;
  scroll-margin-top: 110px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading.compact h2 {
  font-size: 2.05rem;
}

.result-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.result-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.result-table th,
.result-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  white-space: nowrap;
}

.result-table th:nth-child(2),
.result-table td:nth-child(2) {
  min-width: 220px;
  text-align: left;
}

.result-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--black);
  color: #fff;
  font-family: "Changa One", Impact, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

.result-table tbody tr:nth-child(even) {
  background: var(--surface-soft);
}

.result-table tbody tr:hover {
  background: rgba(255, 212, 41, 0.16);
}

.result-table td:first-child,
.result-table td:last-child {
  font-weight: 900;
}

.info-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.sponsors-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sponsor-card {
  min-height: 160px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.sponsor-card img {
  max-height: 92px;
  max-width: 86%;
  object-fit: contain;
}

.sponsor-featured {
  border-color: var(--yellow);
  box-shadow: 0 18px 46px rgba(255, 212, 41, 0.22);
}

@keyframes speedSweep {
  from {
    background-position: 0 0, 0 0;
    transform: translateX(0) skewX(-16deg);
  }
  to {
    background-position: 180px 0, 0 0;
    transform: translateX(24px) skewX(-16deg);
  }
}

@keyframes iconKick {
  0%,
  100% {
    transform: rotate(0) scale(1);
  }
  45% {
    transform: rotate(-8deg) scale(1.12);
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  7%,
  33% {
    opacity: 1;
  }
  42%,
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes headerRaceLine {
  from {
    background-position: -16% 0, 0 0;
  }
  to {
    background-position: 84% 0, 0 0;
  }
}

@keyframes heroPhotoZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes resultFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes resultRowIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes resultProgress {
  from {
    width: 54%;
  }
  to {
    width: 86%;
  }
}

@keyframes resultBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 720px) {
  .result-table-wrap { overflow: visible; }
  .result-table { min-width: 0; border: 0; background: transparent; }
  .result-table thead { display: none; }
  .result-table,
  .result-table tbody,
  .result-table tr,
  .result-table td { display: block; width: 100%; }
  .result-table tbody { display: grid; gap: .85rem; }
  .result-table tbody tr { display: grid; box-sizing: border-box; width: auto; max-width: 100%; padding: .65rem .9rem; border: 1px solid rgba(0, 19, 38, .14); border-radius: .75rem; background: #fff; box-shadow: 0 8px 24px rgba(0, 19, 38, .07); }
  .result-table tbody tr:nth-child(even) { background: #fff; }
  .result-table td { display: grid; grid-template-columns: minmax(7.5rem, 42%) 1fr; gap: .75rem; align-items: baseline; padding: .48rem 0; border: 0; border-bottom: 1px solid rgba(0, 19, 38, .08); text-align: right; }
  .result-table td:last-child { border-bottom: 0; }
  .result-table td::before { content: attr(data-label); color: var(--text-muted); font-size: .78rem; font-weight: 800; letter-spacing: .035em; text-align: left; text-transform: uppercase; }
}
