.sp-hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
    .sp-hero::before {
      content: ""; position: absolute; inset: -200px;
      background:
        radial-gradient(ellipse 600px 400px at 18% 30%, rgba(0,230,118,0.16), transparent 70%),
        radial-gradient(ellipse 500px 350px at 85% 20%, rgba(245,166,35,0.10), transparent 70%);
      filter: blur(40px); pointer-events: none;
    }
    .sp-hero > * { position: relative; z-index: 1; }
    .sp-grid {
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 56px; align-items: center;
    }
    @media (max-width: 920px) { .sp-grid { grid-template-columns: 1fr; gap: 40px; } }
    .sp-hero h1 {
      font-size: clamp(38px, 5.4vw, 60px);
      line-height: 1.05; letter-spacing: -0.025em;
      margin-bottom: 22px;
    }
    .sp-hero h1 .accent {
      background: linear-gradient(135deg, var(--accent) 0%, #6effb0 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .sp-hero .lede {
      font-size: 18px; color: var(--text);
      max-width: 540px; margin-bottom: 28px;
    }

    /* Sponsored matchday card on right */
    .sp-illo { position: relative; display: grid; place-items: center; min-height: 520px; }
    .sp-card {
      width: 100%; max-width: 410px;
      background: radial-gradient(ellipse 380px 240px at 50% 0%, rgba(0,230,118,0.14), transparent 70%), var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 22px;
      position: relative; z-index: 2;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      animation: nmFloat 8s ease-in-out infinite;
    }
    @keyframes nmFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }
    .sp-card::before {
      content: ""; position: absolute; inset: -2px;
      background: linear-gradient(135deg, rgba(0,230,118,0.22), transparent 50%, rgba(245,166,35,0.14));
      border-radius: 26px; z-index: -1;
      filter: blur(22px); opacity: 0.3;
    }
    .sp-sponsor-strip {
      display: flex; align-items: center; gap: 10px;
      background: rgba(245, 166, 35, 0.12);
      border: 1px solid rgba(245, 166, 35, 0.32);
      border-radius: 10px;
      padding: 9px 12px;
      margin-bottom: 18px;
    }
    .sp-sponsor-strip .sp-logo {
      width: 28px; height: 28px; border-radius: 7px;
      background: linear-gradient(135deg, var(--gold), #d4890a);
      color: #1a1a1a; font-weight: 900;
      display: grid; place-items: center;
      font-size: 11px; letter-spacing: 0.02em;
      flex-shrink: 0;
    }
    .sp-sponsor-strip .sp-by { font-size: 10px; font-weight: 700; color: var(--text-dim); letter-spacing: 0.10em; text-transform: uppercase; }
    .sp-sponsor-strip .sp-name { font-size: 13px; color: var(--gold); font-weight: 800; }
    .sp-card-head {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em;
      color: var(--text-dim); text-transform: uppercase;
      margin-bottom: 14px;
    }
    .sp-live {
      display: inline-flex; align-items: center; gap: 5px;
      color: var(--red);
      font-size: 10px;
    }
    .sp-live::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red);
      animation: livePulse 2.4s ease-in-out infinite;
    }
    @keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
    .sp-card-teams {
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; gap: 12px;
      margin-bottom: 18px;
    }
    .sp-team { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .sp-team img { width: 44px; height: 44px; object-fit: contain; }
    .sp-team .name { font-size: 12.5px; font-weight: 800; color: var(--text); }
    .sp-score {
      font-size: 24px; font-weight: 900;
      color: var(--text); letter-spacing: -0.01em;
      font-variant-numeric: tabular-nums;
    }
    .sp-score .dash { color: var(--text-dim); margin: 0 6px; font-weight: 600; }
    .sp-card-divider { height: 1px; background: var(--border); margin-bottom: 14px; }
    .sp-card-board {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px;
      margin-bottom: 16px;
    }
    .sp-card-board .cell {
      aspect-ratio: 1; background: var(--cell-bg); border-radius: 6px;
      border: 1.5px solid transparent;
      display: grid; place-items: center; padding: 4px;
      text-align: center; font-size: 10.5px; font-weight: 600;
      line-height: 1.18; color: var(--text-sec); overflow: hidden;
      transition: background 0.5s, border-color 0.5s, box-shadow 0.5s, color 0.5s;
    }
    .sp-card-board .cell.hit {
      background: rgba(0, 230, 118, 0.32);
      border-color: var(--accent);
      box-shadow: 0 0 8px rgba(0, 230, 118, 0.35);
      color: var(--accent);
    }
    .sp-card-board .cell.sponsor {
      background: rgba(245, 166, 35, 0.18);
      border-color: rgba(245, 166, 35, 0.55);
      color: var(--gold);
    }
    .sp-card-board .cell.miss {
      background: rgba(218, 32, 32, 0.18);
      border-color: rgba(218, 32, 32, 0.5);
      color: #ff6b6b;
    }
    .sp-footer-strip {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 12px;
    }
    .sp-footer-strip .ft-l { color: var(--text-sec); }
    .sp-footer-strip .ft-r { color: var(--accent); font-weight: 800; }

    /* Orbit cells */
    .sp-orbit {
      position: absolute;
      background: rgba(245, 166, 35, 0.10);
      border: 1.5px solid rgba(245, 166, 35, 0.4);
      border-radius: 14px;
      display: grid; place-items: center;
      z-index: 1;
      box-shadow: 0 0 24px rgba(245, 166, 35, 0.22);
      color: var(--gold); font-weight: 800;
      backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
      animation: orbitFloat 7s ease-in-out infinite;
    }
    @keyframes orbitFloat {
      0%, 100% { transform: translate(0, 0) rotate(0); }
      33%      { transform: translate(8px, -12px) rotate(8deg); }
      66%      { transform: translate(-7px, 8px) rotate(-6deg); }
    }
    .sp-orbit.o1 { top: 4%; right: -10px; width: 60px; height: 60px; font-size: 22px; animation-delay: 0s; }
    .sp-orbit.o2 {
      bottom: 8%; left: -16px; width: 56px; height: 56px;
      font-size: 22px; animation-delay: 1.8s;
      color: var(--accent);
      background: rgba(0, 230, 118, 0.10);
      border-color: rgba(0, 230, 118, 0.4);
      box-shadow: 0 0 24px rgba(0, 230, 118, 0.22);
    }
    .sp-orbit.o3 { top: 42%; right: -34px; width: 44px; height: 44px; font-size: 14px; animation-delay: 3.2s; }
    .sp-orbit.o4 {
      bottom: 36%; left: -30px; width: 44px; height: 44px;
      font-size: 14px; animation-delay: 5s;
      color: var(--accent);
      background: rgba(0, 230, 118, 0.10);
      border-color: rgba(0, 230, 118, 0.4);
      box-shadow: 0 0 24px rgba(0, 230, 118, 0.22);
    }

    .sp-section { padding: 80px 0; }
    .sp-section-title {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.1; letter-spacing: -0.022em;
      margin-bottom: 14px;
    }
    .sp-section-sub {
      color: var(--text-sec); font-size: 17px;
      max-width: 640px; margin-bottom: 48px;
    }

    /* Why matchday — 3 metric cards */
    .why-metrics {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    @media (max-width: 880px) { .why-metrics { grid-template-columns: 1fr; } }
    .metric-card {
      background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.55) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      position: relative; overflow: hidden;
      transition: transform 0.5s, border-color 0.3s, box-shadow 0.3s;
    }
    .metric-card::before {
      content: ""; position: absolute; inset: -2px;
      background: radial-gradient(ellipse 380px 280px at 50% 0%, rgba(245,166,35,0.14), transparent 70%);
      opacity: 0; transition: opacity 0.4s; pointer-events: none;
    }
    .metric-card:hover {
      transform: translateY(-6px);
      border-color: rgba(245, 166, 35, 0.4);
      box-shadow: 0 24px 50px rgba(0,0,0,0.4);
    }
    .metric-card:hover::before { opacity: 1; }
    .metric-card > * { position: relative; z-index: 1; }
    .metric-card .big {
      font-size: clamp(36px, 4.2vw, 48px);
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold) 0%, #ffd87a 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
      line-height: 1;
    }
    .metric-card h3 { font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; }
    .metric-card p { color: var(--text-sec); font-size: 14.5px; line-height: 1.55; margin: 0; }

    /* Sponsor surfaces — grid */
    .surfaces {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    @media (max-width: 980px) { .surfaces { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .surfaces { grid-template-columns: 1fr; } }
    .surface-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px 22px;
      position: relative; overflow: hidden;
      transition: transform 0.4s, border-color 0.3s, box-shadow 0.3s;
    }
    .surface-card::before {
      content: ""; position: absolute; inset: -1px;
      background: radial-gradient(ellipse 280px 200px at 50% 0%, rgba(245,166,35,0.13), transparent 70%);
      opacity: 0; transition: opacity 0.4s; pointer-events: none;
    }
    .surface-card:hover {
      transform: translateY(-6px);
      border-color: rgba(245, 166, 35, 0.4);
      box-shadow: 0 22px 50px rgba(0,0,0,0.35);
    }
    .surface-card:hover::before { opacity: 1; }
    .surface-card > * { position: relative; z-index: 1; }
    .surface-card .ico {
      width: 42px; height: 42px; border-radius: 11px;
      background: rgba(245, 166, 35, 0.12);
      color: var(--gold);
      display: grid; place-items: center;
      font-size: 20px; margin-bottom: 14px;
    }
    .surface-card h3 { font-size: 15.5px; letter-spacing: -0.01em; margin-bottom: 6px; }
    .surface-card p { color: var(--text-sec); font-size: 13.5px; line-height: 1.55; margin: 0; }

    /* Measure section — list with bars */
    .measure-grid {
      display: grid; grid-template-columns: 1.1fr 1fr;
      gap: 48px; align-items: center;
    }
    @media (max-width: 880px) { .measure-grid { grid-template-columns: 1fr; } }
    .measure-list {
      list-style: none;
      display: grid; gap: 12px;
    }
    .measure-list li {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 18px;
      display: flex; align-items: center; gap: 14px;
      font-size: 15px; font-weight: 700;
      color: var(--text);
      transition: border-color 0.2s, transform 0.2s;
    }
    .measure-list li:hover { border-color: rgba(0,230,118,0.4); transform: translateX(4px); }
    .measure-list li::before {
      content: "✓"; width: 24px; height: 24px;
      background: rgba(0, 230, 118, 0.15);
      color: var(--accent);
      display: grid; place-items: center;
      border-radius: 7px;
      font-size: 13px; font-weight: 900;
      flex-shrink: 0;
    }
    .measure-vis {
      background: linear-gradient(180deg, var(--surface) 0%, rgba(26,31,39,0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 28px;
      position: relative; overflow: hidden;
    }
    .measure-vis::before {
      content: ""; position: absolute; inset: -2px;
      background: radial-gradient(ellipse 400px 200px at 50% 0%, rgba(0,230,118,0.10), transparent 70%);
      pointer-events: none;
    }
    .measure-vis > * { position: relative; z-index: 1; }
    .stat-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; font-size: 13px; color: var(--text-sec); }
    .stat-row .stat-val { color: var(--accent); font-weight: 900; font-size: 22px; font-variant-numeric: tabular-nums; }
    .stat-bar {
      height: 8px; background: var(--bg); border-radius: 4px;
      overflow: hidden; margin-bottom: 22px;
    }
    .stat-bar > span {
      display: block; height: 100%;
      background: linear-gradient(90deg, var(--accent), #6effb0);
      border-radius: 4px;
      animation: barFill 2s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    @keyframes barFill { from { width: 0; } }

    /* Brand safety callout */
    .safety-band {
      background: linear-gradient(135deg, rgba(0, 230, 118, 0.10), rgba(0, 230, 118, 0.02));
      border: 1px solid rgba(0, 230, 118, 0.4);
      border-radius: 22px;
      padding: 36px 40px;
      display: flex; align-items: center; gap: 28px;
      position: relative; overflow: hidden;
    }
    .safety-band::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 500px 200px at 25% 50%, rgba(0,230,118,0.08), transparent 70%);
      animation: bgDrift 12s ease-in-out infinite;
      pointer-events: none;
    }
    .safety-band > * { position: relative; z-index: 1; }
    @media (max-width: 720px) { .safety-band { flex-direction: column; text-align: center; padding: 28px 24px; } }
    .safety-band .shield {
      width: 64px; height: 64px; border-radius: 18px;
      background: rgba(0, 230, 118, 0.18);
      color: var(--accent);
      display: grid; place-items: center; font-size: 28px;
      flex-shrink: 0;
    }
    .safety-band h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.015em; }
    .safety-band p { color: var(--text); font-size: 15px; line-height: 1.6; max-width: 720px; margin: 0; }

    /* CTA */
    .sp-cta { padding: 100px 0; position: relative; overflow: hidden; }
    .sp-cta::before {
      content: ""; position: absolute; inset: -20%;
      background:
        radial-gradient(ellipse 700px 300px at 25% 50%, rgba(245,166,35,0.14), transparent 60%),
        radial-gradient(ellipse 600px 240px at 80% 50%, rgba(0,230,118,0.10), transparent 60%);
      animation: bgDrift 14s ease-in-out infinite;
      pointer-events: none;
    }
    .sp-cta > * { position: relative; z-index: 1; }
    .sp-cta-card {
      background-color: var(--surface);
      background-image:
        linear-gradient(135deg, rgba(10,12,15,0.92) 0%, rgba(10,12,15,0.82) 50%, rgba(10,12,15,0.94) 100%),
        url(../img/cta-sponsors.jpg);
      background-size: 100% 100%, cover;
      background-position: center, center;
      background-repeat: no-repeat, no-repeat;
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 56px 44px;
      text-align: center;
      max-width: 760px; margin: 0 auto;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
      position: relative; overflow: hidden;
    }
    .sp-cta-card::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse 400px 200px at 50% 0%, rgba(245,166,35,0.10), transparent 70%);
      pointer-events: none;
    }
    .sp-cta-card > * { position: relative; z-index: 1; }
    .sp-cta-card h2 {
      font-size: clamp(28px, 3.6vw, 40px);
      letter-spacing: -0.022em; margin-bottom: 12px;
    }
    .sp-cta-card p { color: var(--text-sec); font-size: 16px; margin-bottom: 28px; }
    .sp-cta-card .cta-row { justify-content: center; }

    /* ── Sponsor surface illustrations (gold-accented) ── */
    .sfi-strip {
      display: flex; align-items: center; gap: 10px;
      background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.32);
      border-radius: 10px; padding: 9px 12px; margin-bottom: 14px;
    }
    .sfi-logo {
      width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--gold), #d4890a);
      color: #1a1a1a; font-weight: 900; font-size: 11px;
      display: grid; place-items: center;
    }
    .sfi-by { font-size: 9.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-dim); }
    .sfi-name { font-size: 13px; font-weight: 800; color: var(--gold); }

    .sfi-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
    .sfi-teams img { width: 38px; height: 38px; object-fit: contain; margin: 0 auto; }
    .sfi-teams .sc { font-size: 20px; font-weight: 900; color: var(--text); text-align: center; }

    /* board */
    .sfi-board { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
    .sfi-board .c { aspect-ratio: 1; background: var(--cell-bg); border-radius: 7px; border: 1.5px solid transparent; display: grid; place-items: center; padding: 3px; text-align: center; font-size: 8px; font-weight: 600; line-height: 1.12; color: var(--text-sec); overflow: hidden; }
    .sfi-board .c.hit { background: rgba(0,230,118,0.30); border-color: var(--accent); color: var(--accent); }
    .sfi-board .c.brand { background: rgba(245,166,35,0.20); border-color: rgba(245,166,35,0.6); color: var(--gold); }
    .sfi-frame { padding: 10px; border-radius: 14px; border: 2px solid rgba(245,166,35,0.5); box-shadow: 0 0 20px rgba(245,166,35,0.15) inset; }

    /* result card (app-style shareable result) */
    .sfi-result {
      width: 320px; max-width: 100%; margin: 0 auto;
      background: linear-gradient(180deg, var(--surface), var(--surface-2));
      border: 1px solid var(--border); border-radius: 18px; padding: 20px;
      position: relative; overflow: hidden; box-shadow: 0 20px 48px rgba(0,0,0,0.42);
    }
    .sfi-result::before { content:""; position:absolute; inset:0; background: radial-gradient(ellipse 270px 170px at 50% 0%, rgba(0,230,118,0.15), transparent 65%); pointer-events:none; }
    .sfi-result > * { position: relative; z-index: 1; }
    .sfi-result .rtop { font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); text-align: center; margin-bottom: 12px; }
    .sfi-result .rtrophy { font-size: 28px; text-align: center; line-height: 1; margin-bottom: 2px; }
    .sfi-result .rb { font-size: 28px; font-weight: 900; letter-spacing: 0.04em; text-align: center; background: linear-gradient(135deg,var(--accent),#6effb0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .sfi-result .rsub { text-align: center; font-size: 11.5px; font-weight: 700; color: var(--text-sec); margin-top: 3px; margin-bottom: 14px; }
    .sfi-result .rboard { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; width: 140px; margin: 0 auto 14px; }
    .sfi-result .rboard i { aspect-ratio: 1; border-radius: 5px; background: var(--cell-bg); }
    .sfi-result .rboard i.w { background: rgba(0,230,118,0.5); box-shadow: 0 0 8px rgba(0,230,118,0.5), inset 0 0 0 1.5px var(--accent); }
    .sfi-result .rboard i.g { background: rgba(0,230,118,0.28); box-shadow: inset 0 0 0 1.5px rgba(0,230,118,0.6); }
    .sfi-result .rboard i.b { background: rgba(245,166,35,0.22); box-shadow: inset 0 0 0 1.5px rgba(245,166,35,0.7); }
    .sfi-result .rr { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; padding: 4px 0; }
    .sfi-result .rr span { color: var(--text-dim); font-weight: 700; letter-spacing: 0.04em; }
    .sfi-result .rr b { color: var(--text); font-weight: 800; font-variant-numeric: tabular-nums; }
    .sfi-result .rr.big b { color: var(--accent); font-size: 14px; }
    .sfi-result .rfoot {
      margin-top: 12px; padding-top: 13px; border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 11.5px; color: var(--gold); font-weight: 800;
    }

    /* leaderboard */
    .sfi-lb-head { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 10px; }
    .sfi-lb-head .ttl { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
    .sfi-lb-live { display: inline-flex; align-items: center; gap: 5px; font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em; color: var(--accent); }
    .sfi-lb-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: livePulse 2s ease-in-out infinite; }
    .sfi-lb-row { display: grid; grid-template-columns: 26px 22px 1fr auto; gap: 9px; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: 9px; padding: 8px 11px; margin-bottom: 5px; font-size: 12.5px; font-weight: 700; }
    .sfi-lb-row:last-child { margin-bottom: 0; }
    .sfi-lb-row .rk { font-size: 11px; font-weight: 800; color: var(--text-dim); text-align: center; }
    .sfi-lb-row .av { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
    .sfi-lb-row .av svg { width: 12px; height: 12px; }
    .sfi-lb-row .nm { color: var(--text); }
    .sfi-lb-row .h { color: var(--accent); font-weight: 800; font-variant-numeric: tabular-nums; }
    .sfi-lb-row.r1 .rk { color: var(--gold); } .sfi-lb-row.r2 .rk { color: #cbd3df; } .sfi-lb-row.r3 .rk { color: #d08a4a; }
    .sfi-lb-row.you { background: rgba(245,166,35,0.10); border-color: rgba(245,166,35,0.4); }
    .sfi-lb-row.you .nm, .sfi-lb-row.you .rk { color: var(--gold); }

    /* venue pins grid (chain rollout map) */
    .sfi-chain-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .sfi-pins { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
    .sfi-pin { aspect-ratio: 1; border-radius: 12px; background: var(--bg); border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-dim); position: relative; overflow: hidden; }
    .sfi-pin svg { width: 20px; height: 20px; }
    .sfi-pin::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(0,230,118,0.16), transparent 60%); opacity: 0; }
    .sfi-pin.on { background: rgba(0,230,118,0.10); border-color: rgba(0,230,118,0.4); color: var(--accent); }
    .sfi-pin.on::after { opacity: 1; }
    .sfi-pin.on .dot { position: absolute; top: 7px; right: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: livePulse 2s ease-in-out infinite; }
    .sfi-pins-foot { text-align: center; font-size: 13px; font-weight: 700; color: var(--text); } .sfi-pins-foot b { color: var(--accent); }

    /* host */
    .sfi-host-head { display: flex; align-items: center; gap: 12px; }
    .sfi-host-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,#F5A623,#d4890a); color: #001b0c; font-weight: 900; display: grid; place-items: center; font-size: 15px; }
    .sfi-host-name { font-size: 15px; font-weight: 800; color: var(--text); }
    .sfi-host-x { font-size: 12px; color: var(--gold); font-weight: 700; }
    .sfi-host-match {
      display: flex; align-items: center; justify-content: space-between;
      background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
      padding: 9px 13px; margin: 14px 0 12px; font-size: 12.5px; font-weight: 700; color: var(--text);
    }
    .sfi-host-match b { color: var(--text); font-weight: 900; }
    .sfi-host-match .min { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; color: var(--red); }
    .sfi-host-match .min::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red); animation: livePulse 2s ease-in-out infinite; }
    .sfi-host-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
    .sfi-stat { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; }
    .sfi-stat .v { font-size: 19px; font-weight: 900; color: var(--accent); font-variant-numeric: tabular-nums; }
    .sfi-stat .k { font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }

    /* venue campaign (branded table-tent QR) */
    .sfi-tent {
      width: 240px; max-width: 100%; margin: 0 auto;
      background: linear-gradient(180deg, var(--surface-2), var(--bg));
      border: 1px solid var(--border); border-top: 3px solid var(--gold);
      border-radius: 16px; padding: 18px 18px 16px; text-align: center;
      box-shadow: 0 18px 44px rgba(0,0,0,0.42);
    }
    .sfi-tent .tent-brand { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px; }
    .sfi-tent .tent-brand .nm { font-size: 12px; font-weight: 800; color: var(--gold); }
    .sfi-qr { width: 152px; height: 152px; margin: 0 auto 12px; background: #fff; border-radius: 12px; padding: 10px; display: grid; grid-template-columns: repeat(11,1fr); gap: 2px; box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
    .sfi-qr div { aspect-ratio: 1; border-radius: 1px; } .sfi-qr div.on { background: #000; }
    .sfi-tent .tent-title { font-size: 14px; font-weight: 800; color: var(--text); }
    .sfi-tent .tent-sub { font-size: 11px; font-weight: 700; color: var(--text-sec); margin-top: 3px; }
    .sfi-tent .tent-foot { margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--border); font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; color: var(--text-dim); text-transform: uppercase; }
