    @font-face {
      font-family: "Acumin ES";
      src: url("/tennis/social-hub/assets/fonts/acumin-pro-condensed-bold.otf") format("opentype");
      font-weight: 800;
      font-style: normal;
      font-display: swap;
    }

    :root {
      color-scheme: light;
      --es-blue: #0a7dfa;
      --es-navy: #033162;
      --page: #f6f8fb;
      --card: #ffffff;
      --line: #dce4ee;
      --text: #121417;
      --muted: #667085;
      --soft: #98a2b3;
      --shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
      --max: 1220px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      color: var(--text);
      background: var(--page);
      font-family: "Roboto", Arial, sans-serif;
      letter-spacing: 0;
    }

    body.dark {
      color-scheme: dark;
      --page: #11161d;
      --card: #171d25;
      --line: #2a3441;
      --text: #f4f7fb;
      --muted: #a9b4c3;
      --soft: #7e8a9a;
      --shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    }

    button {
      border: 0;
      color: inherit;
      font: inherit;
      cursor: pointer;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .site-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      min-height: 69px;
      display: flex;
      align-items: center;
      gap: 0;
      padding: 18px 22px;
      border-bottom: 1px solid var(--es-blue);
      background: #ffffff;
      box-shadow: none;
    }

    body.dark .site-nav {
      background: #ffffff;
    }

    .site-logo {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      margin-right: 52px;
    }

    .site-logo img {
      height: 31px;
      width: auto;
    }

    .site-menu {
      display: flex;
      align-items: center;
      gap: 26px;
      flex: 1;
      min-width: 0;
      font-family: "Acumin ES", "Roboto Condensed", Arial, sans-serif;
      font-size: 18px;
      font-weight: 900;
      color: #111111;
    }

    .site-menu-item {
      position: relative;
      flex: 0 0 auto;
    }

    .site-menu a,
    .site-menu-button {
      font: inherit;
      line-height: 1;
      text-transform: uppercase;
      color: inherit;
    }

    .site-menu-button {
      display: inline-flex;
      align-items: center;
      border: 0;
      padding: 0;
      background: transparent;
      cursor: default;
    }

    .site-menu-button::after {
      width: 16px;
      height: 10px;
      margin-left: 8px;
      background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0Ljk3NjYgMS4xNDA2Mkw3Ljk3NjU2IDcuMTQwNjNMMC45NzY1NjMgMS4xNDA2MiIgc3Ryb2tlPSIjMEE3REZBIiBzdHJva2Utd2lkdGg9IjMiLz4KPC9zdmc+Cg==") center / contain no-repeat;
      transform: translateY(1px);
      content: "";
    }

    .site-menu a:hover,
    .site-menu-button:hover {
      color: var(--es-blue);
    }

    .site-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 0;
      min-width: 176px;
      display: grid;
      gap: 4px;
      padding: 10px;
      border: 1px solid #b5d8fd;
      border-radius: 6px;
      background: #ffffff;
      box-shadow: 0 15px 27px rgba(0, 0, 0, 0.1);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(8px) scale(.98);
      transform-origin: top left;
      transition: opacity .24s cubic-bezier(.16, 1, .3, 1), transform .24s cubic-bezier(.16, 1, .3, 1), visibility .24s cubic-bezier(.16, 1, .3, 1);
    }

    .site-menu-item:hover .site-dropdown,
    .site-menu-item.is-open .site-dropdown,
    .site-menu-item:focus-within .site-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .site-dropdown a {
      position: relative;
      padding: 10px 12px;
      border-radius: 6px;
      color: #033162;
      font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
      font-size: 15px;
      font-weight: 700;
      text-transform: none;
      white-space: nowrap;
      transition: color .22s cubic-bezier(.16, 1, .3, 1), background-color .22s cubic-bezier(.16, 1, .3, 1), transform .22s cubic-bezier(.16, 1, .3, 1);
    }

    .site-dropdown a:hover {
      background: #e8f2ff;
      color: var(--es-blue);
      transform: translateX(4px);
    }

    .site-actions {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
      margin-left: auto;
    }

    .site-actions a {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      place-items: center;
      justify-content: center;
      border: 0;
      background: transparent;
      transition: opacity .15s ease;
    }

    .site-actions a:hover {
      opacity: .72;
    }

    .site-actions img {
      width: 28px;
      height: 28px;
    }

    .site-nav-toggle {
      width: 38px;
      height: 38px;
      display: none;
      place-items: center;
      border: 0;
      background: transparent;
      color: var(--text);
    }

    .site-nav-toggle svg {
      width: 27px;
      height: 27px;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
    }

    .page {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      /* 69px fixed site header + content top padding — same convention as
         pages/es-playzone/golf-trivia-hub/index.module.css */
      padding: 84px 0 56px;
    }

    .score-ticker {
      width: 100vw;
      max-width: 100vw;
      display: grid;
      grid-template-columns: 132px minmax(0, 1fr);
      min-height: 72px;
      margin-left: calc(50% - 50vw);
      margin-bottom: 18px;
      overflow: hidden;
      border-radius: 0;
      background: #ffffff;
      font-family: "Acumin ES", "Roboto Condensed", Arial, sans-serif;
    }

    body.dark .score-ticker {
      background: #171d25;
    }

    .ticker-title {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      padding: 8px 8px 7px;
      border-right: 3px solid #7c2fcf;
      color: #111827;
      background: #ffffff;
    }

    .ticker-title img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      flex: 0 0 auto;
    }

    .ticker-title span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      color: #000000;
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
      text-align: center;
    }

    .ticker-live-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      flex: 0 0 auto;
      background: #ef233c;
    }

    .ticker-window {
      position: relative;
      min-width: 0;
      overflow: hidden;
      background: #ffffff;
    }

    body.dark .ticker-window {
      background: #171d25;
    }

    .ticker-window::before,
    .ticker-window::after {
      content: "";
      position: absolute;
      top: 0;
      z-index: 2;
      width: 34px;
      height: 100%;
      pointer-events: none;
    }

    .ticker-window::before {
      left: 0;
      background: linear-gradient(90deg, var(--card), rgba(255, 255, 255, 0));
    }

    .ticker-window::after {
      right: 0;
      background: linear-gradient(270deg, var(--card), rgba(255, 255, 255, 0));
    }

    .ticker-track {
      display: flex;
      width: max-content;
      min-height: 100%;
      animation: ticker-scroll 42s linear infinite;
      will-change: transform;
    }

    .score-ticker:hover .ticker-track {
      animation-play-state: paused;
    }

    .ticker-loop {
      display: flex;
      flex: 0 0 auto;
    }

    .ticker-card {
      --score-count: 2;
      --score-space: clamp(6px, calc(5px + (var(--score-count) * 1.45px)), 12px);
      min-width: clamp(218px, calc(184px + (var(--score-count) * 28px)), 338px);
      display: grid;
      grid-template-columns: minmax(116px, 1fr) max-content;
      align-items: start;
      gap: clamp(9px, calc(7px + (var(--score-count) * 1px)), 13px);
      padding: 12px clamp(10px, calc(8px + (var(--score-count) * 1.35px)), 15px) 9px;
      border-right: 1px solid #9d9d9d;
      background: #ffffff;
    }

    body.dark .ticker-card {
      background: #171d25;
    }

    .ticker-status {
      display: none;
    }

    .ticker-card.is-live .ticker-status {
      background: #ef3d36;
    }

    .ticker-match {
      min-width: 0;
      display: grid;
      grid-template-rows: 13px 18px 18px;
      row-gap: 4px;
      align-items: start;
    }

    .ticker-row {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--text);
      font-size: 15px;
      line-height: 1;
      font-weight: 700;
    }

    .ticker-player {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .ticker-seed {
      margin-right: 4px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 700;
    }

    .ticker-meta {
      overflow: hidden;
      color: var(--muted);
      font-family: "Roboto", Arial, sans-serif;
      font-size: 10px;
      font-weight: 700;
      line-height: 1.1;
      text-overflow: ellipsis;
      white-space: nowrap;
      align-self: start;
    }

    .ticker-division {
      font-weight: 400;
    }

    .ticker-divider {
      margin: 0 3px;
    }

    .ticker-score {
      display: flex;
      align-items: start;
      gap: var(--score-space);
      color: var(--text);
      font-size: 15px;
      font-weight: 900;
      margin-top: 17px;
    }

    .score-set {
      display: grid;
      grid-template-rows: 18px 18px;
      align-items: start;
      gap: 0;
      color: var(--muted);
      line-height: 1;
      text-align: center;
    }

    .score-set b {
      min-width: 13px;
      color: var(--text);
      font-size: 15px;
      line-height: 1;
    }

    .score-point b {
      color: #4c1d95;
    }

    .ticker-score b.is-winning-score {
      color: #007649;
    }

    .ticker-score b.is-losing-score {
      color: #606060;
    }

    .ticker-updated {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

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

    @media (prefers-reduced-motion: reduce) {
      .ticker-track {
        animation: none;
      }
    }

    .hub-hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 28px;
      margin-bottom: 22px;
      padding-bottom: 26px;
      border-bottom: 1px solid var(--line);
    }

    .brand-kicker {
      width: max-content;
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      margin-bottom: 12px;
      padding: 0 10px;
      border: 1px solid #b5d8fd;
      border-radius: 8px;
      color: var(--es-blue);
      background: #e8f2ff;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    body.dark .brand-kicker {
      color: #b5d8fd;
      background: rgba(10, 125, 250, 0.14);
      border-color: rgba(181, 216, 253, 0.25);
    }

    h1,
    p {
      margin: 0;
    }

    h1 {
      color: var(--text);
      font-family: "Acumin ES", "Roboto Condensed", Arial, sans-serif;
      font-size: clamp(48px, 8vw, 90px);
      font-weight: 900;
      line-height: 0.88;
      text-transform: uppercase;
    }

    .hero-copy {
      max-width: 700px;
      margin-top: 14px;
      color: var(--muted);
      font-size: clamp(17px, 1.7vw, 22px);
      font-weight: 500;
      line-height: 1.32;
    }

    .hub-meta {
      display: grid;
      gap: 8px;
      justify-items: end;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      text-align: right;
    }

    .hub-meta strong {
      color: var(--es-blue);
      font-size: 26px;
      line-height: 1;
    }

    .feed {
      --feed-gap: 18px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-auto-flow: dense;
      grid-auto-rows: 8px;
      gap: var(--feed-gap);
      align-items: start;
    }

    @media (min-width: 761px) {
      .feed.masonry-ready {
        position: relative;
        display: block;
      }

      .feed.masonry-ready .social-card {
        position: absolute;
        margin: 0;
      }
    }

    .feed-refresh-banner {
      width: fit-content;
      margin: 0 auto 14px;
      padding: 8px 14px;
      border-radius: 999px;
      background: #111827;
      color: #ffffff;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
    }

    .feed-refresh-banner[hidden] {
      display: none;
    }

    .feed-sentinel {
      width: 100%;
      height: 1px;
    }

    .scroll-hint {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 60;
      width: 62px;
      height: 62px;
      display: grid;
      place-items: center;
      border: 1px solid #edf1f6;
      border-radius: 14px;
      background: #ffffff;
      color: #111820;
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px) scale(0.96);
      transition:
        opacity 260ms ease,
        transform 320ms cubic-bezier(.2, .85, .2, 1);
    }

    .scroll-hint.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .scroll-hint-icon {
      position: relative;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      color: var(--es-blue);
      overflow: hidden;
    }

    .scroll-hint-icon::before,
    .scroll-hint-icon::after {
      position: absolute;
      left: 50%;
      bottom: 7px;
      width: 2px;
      height: 9px;
      border-radius: 999px;
      background: currentColor;
      opacity: 0;
      content: "";
      transform: translateX(-50%) translateY(5px);
      animation: swipe-trail 2s ease-in-out infinite;
    }

    .scroll-hint-icon::after {
      bottom: 11px;
      height: 6px;
      animation-delay: 90ms;
    }

    .scroll-hint-icon svg {
      width: 29px;
      height: 29px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      animation: swipe-hand 2s ease-in-out infinite;
    }

    @keyframes swipe-hand {
      0%, 14% {
        transform: translateY(5px);
      }
      48%, 62% {
        transform: translateY(-5px);
      }
      82%, 100% {
        transform: translateY(5px);
      }
    }

    @keyframes swipe-trail {
      0%, 16%, 68%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(7px) scaleY(.45);
      }
      30% {
        opacity: .22;
      }
      48% {
        opacity: .08;
        transform: translateX(-50%) translateY(-4px) scaleY(1);
      }
    }

    .social-card {
      --entry-accent: #1473e6;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 0;
      border-radius: 14px;
      background: var(--card);
      box-shadow: var(--shadow);
      font-family: "Roboto", Arial, sans-serif;
      height: auto;
    }

    .instagram-card {
      --entry-accent: #e1306c;
    }

    .twitter-card,
    .threads-card {
      --entry-accent: #111111;
    }

    .youtube-card {
      --entry-accent: #ff0033;
    }

    .facebook-card {
      --entry-accent: #1877f2;
    }

    .reddit-card {
      --entry-accent: #ff4500;
    }

    .es-card {
      --entry-accent: #1473e6;
    }

    .poll-card {
      --entry-accent: #1473e6;
    }

    .update-card {
      --entry-accent: #006633;
    }

    body.dark .twitter-card,
    body.dark .threads-card {
      --entry-accent: #f5f5f5;
    }

    @property --entry-stroke-angle {
      syntax: "<angle>";
      inherits: false;
      initial-value: 0deg;
    }

    .social-card.is-entry-highlight {
      scroll-margin-top: 12px;
      box-shadow:
        0 0 0 1px color-mix(in srgb, var(--entry-accent) 38%, transparent),
        var(--shadow);
    }

    .social-card.is-entry-highlight::after {
      position: absolute;
      z-index: 20;
      inset: 0;
      padding: 1px;
      border-radius: inherit;
      background: conic-gradient(
        from var(--entry-stroke-angle),
        transparent 0deg,
        transparent 245deg,
        color-mix(in srgb, var(--entry-accent) 35%, transparent) 270deg,
        var(--entry-accent) 310deg,
        transparent 350deg
      );
      content: "";
      pointer-events: none;
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: entry-stroke-orbit 6s linear 1 forwards;
    }

    @keyframes entry-stroke-orbit {
      to {
        --entry-stroke-angle: 360deg;
      }
    }

    .card-title-slot {
      position: relative;
      display: grid;
      gap: 5px;
      margin: 0;
      padding: 16px 16px 13px;
      border-bottom: 1px solid #eef2f6;
      color: var(--text);
      font-family: "Roboto", Arial, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.08;
    }

    .card-title-kicker {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 400;
      line-height: 1;
    }

    .card-title-text {
      display: block;
    }

    body.dark .card-title-slot {
      border-bottom-color: rgba(255, 255, 255, 0.08);
    }

    .card-short,
    .card-mini,
    .card-medium,
    .card-tall {
      min-height: 0;
    }

    .card-wide {
      grid-column: span 2;
      min-height: 0;
    }

    .card-wide .post-body {
      display: grid;
      grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
      gap: 16px;
      align-items: start;
    }

    .card-wide .youtube-thumb,
    .card-wide .media {
      margin: 0;
      border-radius: 12px;
      border-width: 1px;
    }

    .post-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 14px 10px;
    }

    .card-title-slot + .post-header {
      padding-top: 13px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      border-radius: 50%;
      box-sizing: border-box;
      padding: 2px;
      object-fit: contain;
      background: #e8eef5;
    }

    .user-meta {
      min-width: 0;
      display: grid;
      gap: 2px;
      flex: 1;
    }

    .user-line {
      display: flex;
      align-items: center;
      gap: 5px;
      min-width: 0;
      font-size: 14px;
      font-weight: 700;
    }

    .user-line span {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .verified {
      width: 15px;
      height: 15px;
      flex: 0 0 auto;
      display: block;
    }

    .subline {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.25;
    }

    .app-logo {
      width: 26px;
      height: 26px;
      flex: 0 0 auto;
      object-fit: contain;
    }

    .post-body {
      padding: 0 14px 10px;
      flex: 0 0 auto;
    }

    .post-title {
      margin: 0;
      color: var(--text);
      font-size: 18px;
      line-height: 1.24;
      font-weight: 700;
    }

    .post-text {
      margin-top: 8px;
      color: var(--text);
      font-size: 15px;
      line-height: 1.45;
      font-weight: 400;
    }

    .post-text .tag {
      color: var(--es-blue);
      font-weight: 500;
    }

    .media {
      display: block;
      overflow: hidden;
      margin-top: 12px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #f2f4f7;
    }

    body.dark .media {
      background: #10151c;
    }

    .media img {
      width: 100%;
      height: 100%;
      min-height: 178px;
      object-fit: cover;
    }

    .carousel-media {
      position: relative;
    }

    .carousel-track {
      display: flex;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .carousel-track::-webkit-scrollbar {
      display: none;
    }

    .carousel-slide {
      width: 100%;
      min-width: 100%;
      margin: 0;
      flex: 0 0 100%;
      scroll-snap-align: start;
    }

    .carousel-control {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.52);
      color: #ffffff;
      transform: translateY(-50%);
      transition:
        opacity 160ms ease,
        background 160ms ease;
    }

    .carousel-control:hover {
      background: rgba(0, 0, 0, 0.72);
    }

    .carousel-control:disabled {
      opacity: 0;
      pointer-events: none;
    }

    .carousel-control svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .carousel-prev {
      left: 10px;
    }

    .carousel-next {
      right: 10px;
    }

    .carousel-count {
      position: absolute;
      top: 10px;
      right: 10px;
      display: inline-flex;
      min-height: 22px;
      align-items: center;
      padding: 3px 7px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.68);
      color: #ffffff;
      font-size: 12px;
      font-weight: 500;
      line-height: 1;
    }

    .video-preview {
      position: relative;
      width: 100%;
      padding: 0;
      border: 0;
      color: #ffffff;
      text-align: left;
      cursor: pointer;
    }

    .video-preview img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .video-shell {
      position: relative;
    }

    .video-shell youtube-video.video-frame {
      position: absolute;
      inset: 0;
      height: 100%;
      aspect-ratio: auto;
      border-radius: inherit;
    }

    .video-shell .video-cover {
      position: absolute;
      z-index: 1;
      inset: 0;
      height: 100%;
      margin: 0;
      border-radius: inherit;
      background: #000000;
    }

    .video-frame,
    youtube-video.video-frame {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 0;
      background: #000000;
    }

    .native-video video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #000000;
    }

    .media.tall {
      aspect-ratio: 4 / 5;
    }

    .media.square {
      aspect-ratio: 1 / 1;
    }

    .media.wide {
      aspect-ratio: 16 / 9;
    }

    .media.tall img,
    .media.square img {
      min-height: 250px;
    }

    .platform-actions {
      margin-top: auto;
      border-top: 1px solid var(--line);
      background: var(--card);
    }

    .owned-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: auto;
      padding: 8px 14px 12px;
      border-top: 0;
      background: var(--card);
    }

    .owned-actions button {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
    }

    .owned-actions button:last-child {
      margin-left: 0;
    }

    .owned-actions svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .owned-actions button.active,
    .owned-actions button[aria-pressed="true"] {
      color: var(--text);
      background: transparent;
    }

    .owned-actions button[data-owned-action="like"][aria-pressed="true"] svg {
      fill: #ef4444;
      stroke: #ef4444;
      animation: heart-pop 320ms cubic-bezier(.2, .9, .28, 1.35);
    }

    .owned-actions button[data-owned-action="share"].active {
      color: var(--es-blue);
    }

    @keyframes heart-pop {
      0% {
        transform: scale(1);
      }
      45% {
        transform: scale(1.26);
      }
      100% {
        transform: scale(1);
      }
    }

    body.share-dialog-open {
      overflow: hidden;
    }

    .share-dialog-backdrop {
      position: fixed;
      z-index: 1000;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 20px;
      background: rgba(17, 24, 39, 0.38);
      opacity: 0;
      visibility: hidden;
      transition:
        opacity 180ms ease,
        visibility 180ms ease;
    }

    .share-dialog-backdrop.is-open {
      opacity: 1;
      visibility: visible;
    }

    .share-dialog {
      width: min(100%, 440px);
      padding: 22px;
      border: 1px solid #e8edf3;
      border-radius: 14px;
      background: var(--card);
      box-shadow: 0 22px 60px rgba(17, 24, 39, 0.2);
      color: var(--text);
      opacity: 0;
      transform: translateY(10px) scale(0.96);
      transition:
        opacity 180ms ease,
        transform 240ms cubic-bezier(.2, .9, .3, 1.15);
    }

    .share-dialog-backdrop.is-open .share-dialog {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .share-dialog-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .share-dialog-title {
      margin: 0;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2;
    }

    .share-dialog-close {
      width: 34px;
      height: 34px;
      display: grid;
      flex: 0 0 auto;
      place-items: center;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--muted);
    }

    .share-dialog-close svg,
    .share-copy-button svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .share-platforms {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .share-platform {
      min-width: 0;
      min-height: 76px;
      display: grid;
      place-items: center;
      align-content: center;
      gap: 8px;
      padding: 10px 6px;
      border: 1px solid #e8edf3;
      border-radius: 8px;
      background: var(--card);
      color: var(--text);
      font-family: "Roboto", Arial, sans-serif;
      font-size: 12px;
      font-weight: 500;
      transition:
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease;
    }

    .share-platform:hover {
      border-color: #cbd5e1;
      background: #f8fafc;
      transform: translateY(-2px);
    }

    .share-platform img {
      width: 25px;
      height: 25px;
      display: block;
      object-fit: contain;
    }

    .share-copy-button {
      width: 100%;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 12px;
      padding: 0 14px;
      border: 1px solid #dce3eb;
      border-radius: 8px;
      background: #f8fafc;
      color: var(--text);
      font-family: "Roboto", Arial, sans-serif;
      font-size: 14px;
      font-weight: 500;
    }

    .share-dialog-status {
      min-height: 16px;
      margin: 10px 0 0;
      color: var(--muted);
      font-family: "Roboto", Arial, sans-serif;
      font-size: 12px;
      line-height: 16px;
      text-align: center;
    }

    body.dark .share-dialog,
    body.dark .share-platform,
    body.dark .share-copy-button {
      border-color: rgba(255, 255, 255, 0.1);
    }

    body.dark .share-platform:hover,
    body.dark .share-copy-button {
      background: #202733;
    }

    .icon-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 10px 14px;
      color: var(--text);
    }

    .icon-row button {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0;
      background: transparent;
      color: inherit;
      font-size: 14px;
      font-weight: 500;
    }

    .icon-row svg,
    .reddit-votes svg {
      width: 20px;
      height: 20px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .facebook-card .icon-row svg,
    .youtube-card .icon-row svg {
      width: 18px;
      height: 18px;
    }

    .reddit-votes svg {
      width: 18px;
      height: 18px;
      stroke-width: 2.4;
    }

    .icon-row button.active {
      color: #ef4444;
    }

    .icon-row .push {
      margin-left: auto;
    }

    .metrics {
      padding: 0 14px 12px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .instagram-card .post-body {
      padding-inline: 0;
    }

    .instagram-card .caption {
      padding: 0 14px;
    }

    .instagram-card .media {
      margin: 0;
      border-width: 1px 0;
      border-radius: 0;
    }

    .youtube-card {
      border-radius: 18px;
    }

    .youtube-card .post-header {
      padding-bottom: 12px;
    }

    .youtube-thumb {
      position: relative;
      margin: 0;
      border-width: 1px 0;
      border-radius: 0;
    }

    .play-badge {
      position: absolute;
      inset: 50% auto auto 50%;
      width: 54px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: white;
      background: rgba(0, 0, 0, 0.72);
      transform: translate(-50%, -50%);
      font-size: 18px;
    }

    .play-badge svg {
      width: 20px;
      height: 20px;
      fill: #ffffff;
      transform: translateX(1px);
    }

    .video-duration,
    .video-source {
      position: absolute;
      bottom: 10px;
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      padding: 3px 7px;
      border-radius: 5px;
      background: rgba(0, 0, 0, 0.78);
      color: #ffffff;
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
    }

    .video-duration {
      right: 10px;
    }

    .video-source {
      left: 10px;
    }

    .youtube-card .post-title {
      margin-top: 12px;
      font-size: 17px;
    }

    .es-card .media + .post-title {
      margin-top: 18px;
    }

    .reddit-card .media + .post-title {
      margin-top: 18px;
    }

    .article-link {
      display: inline-flex;
      width: fit-content;
      margin-top: 10px;
      color: var(--es-blue);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
    }

    .ad-card {
      min-height: 0;
      padding: 0;
      box-shadow: none;
      background: #eef0f2;
    }

    .tennis-hub-ad-slot {
      width: 100%;
      margin: 0;
      padding: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      overflow: visible;
    }

    .tennis-hub-ad-brand {
      text-align: center;
    }

    .tennis-hub-ad-brand p {
      color: #535353;
      margin: 16px 0 8px 0;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 14px;
      line-height: 16px;
      font-weight: 500;
    }

    .tennis-hub-ad-container {
      display: block;
      width: 100%;
      height: 280px;
      margin: 0 auto 20px auto;
      background-image: radial-gradient(circle at top, #efefef 1%, #ffffff 99%);
    }

    .tennis-hub-ad-container[data-background="false"] {
      background-image: none;
    }

    .ad-slot {
      width: 100%;
      min-height: 152px;
      display: grid;
      place-items: center;
      align-content: center;
      gap: 7px;
      padding: 18px 16px;
      border-radius: 14px;
      background: #eef0f2;
      color: #b8bec6;
      font-family: "Roboto", Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .ad-slot small {
      color: #9aa3ae;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0;
      text-align: center;
    }

    .ad-card-video .ad-slot {
      aspect-ratio: 16 / 9;
      min-height: 148px;
    }

    .ad-card-newsletter .ad-slot {
      min-height: 132px;
    }

    .ad-card-sponsor .ad-slot {
      min-height: 152px;
    }

    .poll-card {
      overflow: hidden;
      background: var(--card);
    }

    .poll-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 15px 16px 12px;
      border-bottom: 1px solid #eef2f6;
    }

    .poll-header > div {
      min-width: 0;
      display: grid;
      gap: 5px;
    }

    .poll-kicker {
      display: flex;
      align-items: center;
      gap: 5px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 400;
      line-height: 1;
    }

    .poll-kicker img {
      width: 11px;
      height: 11px;
      object-fit: contain;
    }

    .poll-label {
      color: var(--es-blue);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .poll-brand {
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      object-fit: contain;
    }

    .poll-body {
      padding: 16px;
    }

    .poll-question {
      margin: 0;
      color: var(--text);
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2;
    }

    .poll-options {
      display: grid;
      gap: 8px;
      margin-top: 16px;
    }

    .poll-option {
      position: relative;
      isolation: isolate;
      width: 100%;
      min-height: 43px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 16px minmax(0, 1fr) auto;
      align-items: center;
      gap: 9px;
      padding: 10px 12px;
      border: 1px solid #dfe5ec;
      border-radius: 6px;
      background: var(--card);
      color: var(--text);
      font: inherit;
      text-align: left;
      transition: border-color .18s ease, transform .18s ease;
    }

    .poll-option:hover {
      border-color: #97bce8;
    }

    .poll-option:focus-visible {
      outline: 2px solid var(--es-blue);
      outline-offset: 2px;
    }

    .poll-option:active {
      transform: scale(.995);
    }

    .poll-option-fill {
      position: absolute;
      z-index: -1;
      inset: 0 auto 0 0;
      width: var(--poll-result);
      background: #eaf4ff;
      transition: width .45s cubic-bezier(.2, .8, .2, 1);
    }

    .poll-option.is-selected {
      border-color: var(--es-blue);
    }

    .poll-option.is-selected .poll-option-fill {
      background: #d9ecff;
    }

    .poll-option-marker {
      width: 15px;
      height: 15px;
      display: grid;
      place-items: center;
      border: 1px solid #aab4c0;
      border-radius: 50%;
      background: var(--card);
    }

    .poll-option.is-selected .poll-option-marker {
      border: 4px solid var(--es-blue);
    }

    .poll-card.is-poll-animating .poll-option-fill {
      animation: poll-result-fill .52s cubic-bezier(.22, .78, .25, 1) both;
    }

    .poll-card.is-poll-animating .poll-option.is-selected {
      animation: poll-choice-set .4s cubic-bezier(.2, .8, .25, 1);
    }

    .poll-card.is-poll-animating .poll-option.is-selected .poll-option-marker {
      animation: poll-marker-pop .4s cubic-bezier(.2, .85, .25, 1.2);
    }

    @keyframes poll-result-fill {
      from {
        width: 0;
      }
      to {
        width: var(--poll-result);
      }
    }

    @keyframes poll-choice-set {
      0% {
        transform: translateY(0);
      }
      45% {
        transform: translateY(-2px);
      }
      100% {
        transform: translateY(0);
      }
    }

    @keyframes poll-marker-pop {
      0% {
        transform: scale(.7);
      }
      60% {
        transform: scale(1.12);
      }
      100% {
        transform: scale(1);
      }
    }

    .poll-option-label,
    .poll-option-result {
      position: relative;
      z-index: 1;
      font-size: 14px;
      line-height: 1.25;
    }

    .poll-option-label {
      font-weight: 500;
    }

    .poll-option-result {
      font-weight: 700;
    }

    .poll-meta {
      margin: 11px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.3;
    }

    .nps-option {
      grid-template-columns: auto minmax(0, 1fr);
    }

    .nps-emoji {
      font-size: 20px;
      line-height: 1;
    }

    .poll-thanks {
      margin: 16px 0 0;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
    }

    body.dark .poll-header {
      border-bottom-color: rgba(255, 255, 255, 0.08);
    }

    body.dark .poll-option {
      border-color: rgba(255, 255, 255, 0.14);
    }

    body.dark .poll-option-fill {
      background: rgba(20, 115, 230, 0.13);
    }

    body.dark .poll-option.is-selected .poll-option-fill {
      background: rgba(20, 115, 230, 0.22);
    }

    @media (prefers-reduced-motion: reduce) {
      .poll-card.is-poll-animating .poll-option-fill,
      .poll-card.is-poll-animating .poll-option.is-selected,
      .poll-card.is-poll-animating .poll-option.is-selected .poll-option-marker {
        animation: none;
      }
    }

    .youtube-meta {
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }

    .facebook-card .post-title {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.42;
    }

    .facebook-card .reaction-bar {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 14px;
      color: var(--muted);
      font-size: 13px;
      border-top: 1px solid var(--line);
      background: var(--card);
    }

    .facebook-card .icon-row {
      justify-content: space-around;
      padding-block: 9px;
    }

    .reddit-card {
      display: flex;
    }

    .reddit-votes {
      display: none;
      grid-row: 1 / span 3;
      align-content: start;
      justify-items: center;
      gap: 6px;
      padding-top: 14px;
      border-right: 1px solid var(--line);
      color: #ff4500;
      font-size: 12px;
      font-weight: 800;
    }

    .reddit-card .post-header,
    .reddit-card .post-body,
    .reddit-card .platform-actions {
      grid-column: auto;
    }

    .reddit-card .post-title {
      font-size: 17px;
      line-height: 1.28;
      font-weight: 700;
    }

    .reddit-card .subline {
      color: var(--muted);
    }

    .reddit-card .icon-row {
      justify-content: space-between;
      gap: 8px;
      color: var(--muted);
    }

    .reddit-card .icon-row button {
      font-size: 13px;
      font-weight: 700;
    }

    .platform-actions,
    .reaction-bar,
    .reddit-votes {
      display: none;
    }

    .threads-card .post-body {
      display: grid;
      gap: 12px;
    }

    .update-card {
      min-height: 262px;
      box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
    }

    .update-card .post-header {
      padding-bottom: 8px;
    }

    .update-card .avatar {
      width: 36px;
      height: 36px;
    }

    .update-card .app-logo {
      width: 24px;
      height: 24px;
    }

    .update-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 9px;
      color: #006633;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .update-label::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #c7e500;
      content: "";
    }

    .update-card .post-title {
      font-size: 17px;
      line-height: 1.3;
    }

    .update-card .post-text {
      margin-top: 7px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
    }

    .update-footer {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      padding: 10px 14px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .thread-reply {
      margin-left: 20px;
      padding-left: 18px;
      border-left: 2px solid var(--line);
      color: var(--muted);
      font-size: 14px;
      line-height: 1.42;
    }

    .thread-reply strong {
      color: var(--text);
      font-weight: 700;
    }

    .site-footer {
      margin-top: 10px;
      background: #ffffff;
      color: #111111;
      font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
      font-weight: 700;
    }

    .footer-hero {
      padding: 74px 24px 28px;
      background: var(--es-blue);
      color: #ffffff;
      text-align: center;
    }

    .footer-logo-img {
      display: block;
      width: auto;
      max-width: min(100%, 820px);
      height: clamp(30px, 6vw, 48px);
      margin: 0 auto;
    }

    .footer-blurb {
      width: min(980px, 100%);
      margin: 18px auto 22px;
      font-size: 14px;
      font-weight: 300;
      line-height: 18px;
    }

    .footer-socials {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .footer-socials a {
      color: inherit;
      text-decoration: none;
    }

    .footer-socials img {
      display: block;
      width: 24px;
      height: 24px;
    }

    .footer-copy {
      font-size: 14px;
      font-weight: 700;
    }

    .footer-links {
      width: min(1200px, calc(100% - 48px));
      display: grid;
      grid-template-columns: 1.1fr 1.1fr 1.1fr 1.4fr;
      gap: 44px;
      margin: 0 auto;
      padding: 34px 0 44px;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 17px;
      font-size: 14px;
      font-weight: 500;
    }

    .footer-col span {
      font-size: 16px;
      font-weight: 800;
    }

    .footer-col a,
    .footer-bottom a {
      color: inherit;
      text-decoration: none;
    }

    .footer-logo-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: inherit;
      text-decoration: none;
    }

    .footer-col.sports {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 36px;
      row-gap: 17px;
    }

    .footer-bottom {
      width: min(1200px, calc(100% - 48px));
      display: flex;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      margin: 0 auto;
      padding: 20px 0 24px;
      border-top: 1px solid #b5d8fd;
      color: #7997b8;
      font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
      font-size: 14px;
      font-weight: 500;
    }

    @media (max-width: 1020px) {
      .feed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .card-wide {
        grid-column: span 2;
      }
    }

    @media (max-width: 760px) {
      .site-nav {
        min-height: 52px;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
      }

      .site-logo img {
        height: 25px;
      }

      .site-logo {
        margin-right: 0;
      }

      .site-nav-toggle {
        display: grid;
        margin-left: auto;
      }

      .site-actions {
        display: none;
      }

      .site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        width: 100%;
        padding: 8px 14px 14px;
        border-bottom: 1px solid var(--es-blue);
        background: #ffffff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
      }

      .site-nav.is-open .site-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .site-menu a {
        display: block;
        padding: 12px 4px;
        font-size: 17px;
      }

      .site-menu-button {
        width: 100%;
        justify-content: space-between;
        padding: 12px 4px;
        font-size: 17px;
      }

      .site-menu-item {
        border-top: 1px solid #e6f2fe;
      }

      .site-menu > a:first-child {
        border-top: 0;
      }

      .site-dropdown {
        position: static;
        min-width: 0;
        display: none;
        padding: 0 0 8px 10px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }

      .site-menu-item.is-open .site-dropdown {
        display: grid;
      }

      .page {
        width: min(100% - 28px, var(--max));
      }

      .score-ticker {
        grid-template-columns: 78px minmax(0, 1fr);
        min-height: 58px;
        margin-bottom: 12px;
      }

      .ticker-title {
        gap: 3px;
        padding: 6px 5px 5px;
        border-right-width: 2px;
      }

      .ticker-title img {
        width: 24px;
        height: 24px;
      }

      .ticker-title span {
        font-size: 11px;
      }

      .ticker-card {
        min-width: clamp(202px, calc(170px + (var(--score-count) * 25px)), 314px);
        grid-template-columns: minmax(104px, 1fr) max-content;
        gap: clamp(8px, calc(6px + (var(--score-count) * 1px)), 12px);
        padding-inline: clamp(8px, calc(6px + (var(--score-count) * 1.3px)), 13px);
      }

      .ticker-updated {
        display: none;
      }

      .hub-hero {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      h1 {
        font-size: clamp(42px, 14vw, 58px);
      }

      .hub-meta {
        justify-items: start;
        text-align: left;
      }

      .feed {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }

      .social-card,
      .card-mini,
      .card-short,
      .card-medium,
      .card-tall,
      .card-wide {
        grid-column: auto;
        grid-row: auto;
        height: auto;
      }

      .card-title-slot {
        padding: 15px 15px 12px;
        font-size: 19px;
      }

      .poll-header {
        padding-inline: 15px;
      }

      .poll-body {
        padding: 15px;
      }

      .poll-question {
        font-size: 19px;
      }

      .card-wide .post-body {
        display: block;
      }

      .share-dialog-backdrop {
        align-items: end;
        padding: 12px;
      }

      .share-dialog {
        width: 100%;
        padding: 20px 16px 16px;
        border-radius: 14px;
        transform: translateY(18px) scale(0.98);
      }

      .footer-hero {
        padding: 50px 18px 24px;
      }

      .footer-logo-img {
        height: 34px;
      }

      .footer-blurb,
      .footer-copy {
        font-size: 14px;
        line-height: 1.45;
      }

      .footer-links {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 0 34px;
      }

      .footer-bottom {
        width: calc(100% - 36px);
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .social-card.is-entry-highlight::after {
        animation: none;
        background: var(--entry-accent);
        opacity: .5;
      }

      .share-dialog-backdrop,
      .share-dialog,
      .scroll-hint,
      .scroll-hint-icon {
        transition: none;
        animation: none;
      }
    }
