:root {
  --ink: #153728;
  --muted: #6d766f;
  --brand: #008b43;
  --paper: #f7f3ea;
  --line: rgba(21, 55, 40, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home {
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,.72), transparent 42%), var(--paper);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: min(1376px, calc(100% - 64px));
  height: 104px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  justify-self: start;
  width: 166px;
}

.brand img, .brand video { display: block; width: 100%; height: auto; object-fit: contain; }
.brand video { background: transparent; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.1vw, 52px);
  color: #294638;
  font-size: 15px;
  font-weight: 540;
  letter-spacing: .01em;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1.5px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--brand); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.language-select { position: relative; justify-self: end; }
.language-select::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-select select {
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  padding: 10px 20px 10px 8px;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 104px);
  flex-direction: column;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  margin: clamp(42px, 6vh, 76px) auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .25em;
}

.hero h1 {
  margin: 0;
  color: #102d20;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: 1.06;
}

.hero-title-line {
  display: block;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(26px);
  animation: hero-title-enter 850ms cubic-bezier(.22, 1, .36, 1) forwards;
  will-change: clip-path, opacity, transform;
}

.hero-title-line--primary { color: #102d20; }
.hero-title-line--accent { color: var(--brand); animation-delay: 120ms; }

@keyframes hero-title-enter {
  60% { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0); transform: translateY(0); }
}

.hero-summary {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 430;
  letter-spacing: .025em;
}

.hero-art {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: min(57vh, 560px);
  overflow: hidden;
}

.hero-art::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 20%;
  background: linear-gradient(to bottom, var(--paper), transparent);
  content: "";
  pointer-events: none;
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }

.scroll-note {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: .08em;
  text-shadow: 0 1px 8px rgba(17,48,32,.45);
  transform: translateX(-50%);
}

.scroll-note span { width: 1px; height: 24px; background: rgba(255,255,255,.7); }

.hero-live-stats {
  position: absolute;
  z-index: 4;
  bottom: 72px;
  left: 50%;
  display: grid;
  width: min(1080px, calc(100% - 64px));
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(13,48,32,.36);
  box-shadow: 0 18px 50px rgba(13,48,32,.18);
  color: #fff;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.hero-live-stats > p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  border-right: 1px solid rgba(255,255,255,.13);
  color: #b9edc9;
  font-size: 13px;
  font-weight: 700;
  padding: 0 22px;
  white-space: nowrap;
}

.hero-live-stats > p i { width: 6px; height: 6px; border-radius: 50%; background: #65e491; box-shadow: 0 0 0 5px rgba(101,228,145,.12); }
.hero-live-stats > div { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.hero-live-stats > div > span { display: flex; min-height: 78px; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.12); padding: 12px 18px; }
.hero-live-stats > div > span:last-child { border-right: 0; }
.hero-live-stats b { font-size: 21px; font-weight: 680; letter-spacing: -.035em; }
.hero-live-stats small { margin-top: 4px; color: rgba(255,255,255,.66); font-size: 12px; white-space: nowrap; }

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 40px, 1376px);
    height: 84px;
  }

  .brand { width: 144px; }

  .primary-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    justify-content: center;
    gap: 28px;
    overflow-x: auto;
    font-size: 14px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar { display: none; }
  .hero { min-height: calc(100vh - 84px); }
  .hero-copy { margin-top: 86px; }
  .hero-art { height: 51vh; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 32px); }
  .brand { width: 132px; }
  .language-select select { max-width: 104px; font-size: 13px; }

  .primary-nav {
    right: 0;
    left: 0;
    justify-content: flex-start;
    gap: 18px;
    font-size: 13px;
    padding: 0 16px;
  }

  .hero-copy { width: calc(100% - 36px); margin-top: 74px; }
  .eyebrow { margin-bottom: 18px; font-size: 12px; }

  .hero h1 {
    font-size: clamp(34px, 10.4vw, 46px);
    letter-spacing: -.075em;
  }

  .hero-summary {
    max-width: 300px;
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-art { right: -42%; left: -42%; height: 45vh; }
  .scroll-note { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .hero-title-line { opacity: 1; clip-path: none; transform: none; animation: none; }
}

/* Long-form home */
.hero-shell { min-height: 100vh; }

.home-section {
  position: relative;
  display: grid;
  padding: clamp(72px, 8vw, 108px) clamp(32px, 7vw, 132px);
}

.section-copy { max-width: 610px; }
.section-copy--wide { max-width: 700px; }

.section-kicker {
  margin: 0 0 28px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.section-copy h2,
.page-intro h1,
.events-intro h1,
.livehi-hero h1,
.account-page-copy h1 {
  margin: 0;
  color: #102d20;
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 760;
  letter-spacing: -.06em;
  line-height: 1.08;
}

.section-copy > p:not(.section-kicker),
.page-intro > p:not(.section-kicker),
.events-intro > p,
.livehi-hero > p:not(.section-kicker),
.account-page-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.text-link,
.account-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
}

.download-section {
  grid-template-columns: minmax(300px, .72fr) minmax(580px, 1.28fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
  background: linear-gradient(135deg, #f8f6f0 0%, #f2f4ed 100%);
}

.download-section .section-copy { align-self: center; }
.download-section .section-copy h2 { max-width: 520px; font-size: clamp(38px, 3.6vw, 52px); }
.download-section .section-copy > p:not(.section-kicker) { max-width: 510px; margin-top: 24px; font-size: 16px; line-height: 1.75; }

#download, #events { scroll-margin-top: 20px; }

.download-platforms {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(21,61,44,.11);
  border-radius: 30px;
  background: rgba(255,255,255,.68);
  box-shadow: 0 28px 80px rgba(24,61,43,.08);
  backdrop-filter: blur(12px);
}

.download-platform {
  position: relative;
  display: grid;
  min-height: 142px;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid rgba(21,61,44,.1);
  padding: 25px 30px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms), transform 600ms cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms), background 220ms ease;
}

.download-platform:last-child { border-bottom: 0; }
.download-platform.is-visible { opacity: 1; transform: translateY(0); }
.download-platform[href]:hover { background: rgba(226,237,226,.7); }
.download-platform > img { position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 18px; box-shadow: 0 13px 34px rgba(0,99,61,.14); }
.download-platform--mini > img { width: 92px; height: 92px; border-radius: 15px; box-shadow: 0 13px 34px rgba(21,55,40,.1); }
.download-platform > div { position: relative; z-index: 1; display: grid; min-width: 0; grid-template-columns: minmax(0, 1fr) auto; align-items: center; column-gap: 24px; }
.download-platform small { color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.download-platform h3 { grid-column: 1; margin: 5px 0 7px; color: #153d2c; font-size: clamp(24px, 2.2vw, 32px); letter-spacing: -.045em; }
.download-platform p { grid-column: 1; overflow: hidden; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; text-overflow: ellipsis; white-space: nowrap; }
.download-platform b { display: flex; grid-column: 2; grid-row: 1 / 4; align-items: center; gap: 18px; border: 1px solid rgba(21,61,44,.16); border-radius: 99px; color: #17442f; font-size: 14px; padding: 11px 15px; white-space: nowrap; }
.download-platform b i { font-size: 17px; font-style: normal; }
.platform-index { display: none; }

.download-objects {
  position: relative;
  display: flex;
  min-height: 510px;
  align-items: center;
  justify-content: center;
}

.download-objects::before {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: #e3ebdf;
  content: "";
}

.app-object,
.mini-object {
  position: absolute;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(23, 63, 44, .12);
}

.app-object {
  top: 68px;
  left: 2%;
  display: flex;
  width: min(390px, 72%);
  align-items: center;
  gap: 22px;
  border-radius: 28px;
  background: #fff;
  padding: 22px;
  transform: rotate(-4deg);
}

.app-object img { width: 96px; height: 96px; border-radius: 21px; }
.app-object div { display: flex; min-width: 0; flex-direction: column; gap: 8px; }
.app-object strong { font-size: 18px; }
.app-object span { color: var(--muted); font-size: 14px; white-space: nowrap; }

.mini-object {
  right: 2%;
  bottom: 30px;
  width: min(265px, 52%);
  border-radius: 26px;
  background: #fff;
  padding: 16px 16px 20px;
  text-align: center;
  transform: rotate(3deg);
}

.mini-object img { width: 100%; height: auto; border-radius: 14px; }
.mini-object p { margin: 14px 0 0; color: #395646; font-size: 13px; font-weight: 650; }

.event-section {
  align-content: start;
  background: #153d2c;
  color: #f4f0e6;
}

.event-heading {
  display: grid;
  grid-template-columns: 1.1fr .72fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(38px, 4.5vw, 58px);
}

.event-section .section-kicker { margin-bottom: 20px; color: #8fd0a6; }
.event-section .section-copy h2 {
  max-width: none;
  color: #f4f0e6;
  font-size: clamp(36px, 3.5vw, 52px);
  white-space: nowrap;
}
.event-heading > p { max-width: 500px; margin: 0 0 6px; color: rgba(244,240,230,.72); font-size: 16px; line-height: 1.75; }

.event-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.event-empty { grid-column: 1 / -1; margin: 0; padding: 24px 0; font-size: 15px; line-height: 1.6; }
.event-list .event-empty { border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(244,240,230,.72); }
.events-board .event-empty { color: #53675b; }
.event-row {
  position: relative;
  display: grid;
  min-height: 150px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  gap: 12px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  padding: 21px 23px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.event-row:hover { border-color: rgba(185,237,201,.3); background: rgba(255,255,255,.07); transform: translateY(-3px); }
.event-status { display: flex; grid-column: 1; grid-row: 1; align-items: center; gap: 9px; color: rgba(255,255,255,.62); font-size: 13px; }
.event-status i { width: 7px; height: 7px; border-radius: 50%; background: #cfb982; }
.event-status--live { color: #b9edc9; }
.event-status--live i { background: #5ce188; box-shadow: 0 0 0 5px rgba(92,225,136,.12); }
.event-row strong { display: -webkit-box; grid-column: 1 / 3; grid-row: 2; overflow: hidden; align-self: center; color: #fff; font-size: clamp(17px, 1.45vw, 22px); letter-spacing: -.025em; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.event-meta { display: flex; min-width: 0; grid-column: 1; grid-row: 3; flex-direction: column; gap: 4px; color: rgba(255,255,255,.56); font-size: 12px; letter-spacing: .01em; line-height: 1.45; }
.event-meta b { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 650; }
.event-meta small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.event-action { grid-column: 2; grid-row: 3; align-self: end; justify-self: end; color: #b9edc9; font-size: 12px; font-weight: 650; white-space: nowrap; }
.event-action b { margin-left: 7px; }
.demo-label { margin: 22px 0 0; color: rgba(255,255,255,.35); font-size: 11px; }
.events-more { display: flex; width: max-content; align-items: center; justify-self: end; gap: 28px; margin-top: 24px; margin-left: auto; border-bottom: 1px solid rgba(185,237,201,.45); color: #b9edc9; font-size: 13px; font-weight: 700; padding: 0 0 9px; }
.events-more span { font-size: 17px; }

.account-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9vw;
  background: #ecf0e8;
}

.account-copy { max-width: 720px; }
.account-copy .section-kicker { margin-bottom: 22px; font-size: 12px; }
.account-copy h2 { font-size: clamp(36px, 3.4vw, 50px); letter-spacing: -.05em; line-height: 1.12; }
.account-copy h2 > span { white-space: nowrap; }
.account-copy > p:not(.section-kicker, .secure-note) { font-size: 18px; line-height: 1.75; }

.account-visual {
  position: relative;
  display: grid;
  width: min(420px, 100%);
  aspect-ratio: 1;
  place-items: center;
}

.account-visual::before {
  position: absolute;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: #d4e1d4;
  content: "";
}

.account-visual > img { z-index: 2; width: 126px; height: 126px; border-radius: 29px; box-shadow: 0 24px 60px rgba(0,99,61,.2); }
.account-orbit { position: absolute; z-index: 1; border: 1px solid rgba(21,61,44,.18); border-radius: 50%; }
.account-orbit--one { inset: 5%; }
.account-orbit--two { inset: 18%; }
.account-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(21,61,44,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(21,61,44,.08);
  color: #1c4d36;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 19px;
  backdrop-filter: blur(8px);
}
.account-chip--member { top: 21%; left: 2%; }
.account-chip--ai { right: 0; bottom: 21%; }
.secure-note { display: flex; align-items: center; gap: 10px; margin-top: 26px !important; color: #456150 !important; font-size: 15px !important; }
.secure-note span { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; background: #d8e7da; color: var(--brand); }
.account-link { border: 0; border-radius: 999px; background: var(--brand); color: #fff; font-size: 15px; padding: 16px 23px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 132px;
  padding: 32px max(32px, calc((100vw - 1280px) / 2));
  background: #102f21;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.site-footer a { width: 138px; }
.site-footer img { width: 100%; height: auto; }
.site-footer p { margin: 0; }
.footer-legal { display: flex; align-items: center; justify-self: end; gap: 18px; }
.site-footer .footer-legal a { width: auto; color: rgba(255,255,255,.58); white-space: nowrap; }
.site-footer .footer-legal a:hover { color: rgba(255,255,255,.86); }

/* Shared interior pages */
.inner-page { min-height: 100vh; background: #f8f6f0; }
.inner-page--cream { background: #f7f3ea; }
.page-intro {
  width: min(1040px, calc(100% - 48px));
  margin: clamp(68px, 8vw, 120px) auto clamp(64px, 8vw, 110px);
  text-align: center;
}
.page-intro > p:not(.section-kicker) { max-width: 680px; margin: 24px auto 0; }

.platform-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto 100px;
  border-top: 1px solid var(--line);
}
.platform-panel { position: relative; display: grid; min-height: 650px; align-content: space-between; padding: 72px; overflow: hidden; }
.platform-panel:first-child { border-right: 1px solid var(--line); }
.platform-panel--app { background: #e5ebe2; }
.platform-panel--mini { background: #edf2ee; }
.platform-art { display: grid; place-items: center; }
.platform-art::before { position: absolute; top: 46px; width: 340px; height: 340px; border-radius: 50%; background: #d3dfd2; content: ""; }
.platform-art img { position: relative; width: 160px; height: 160px; border-radius: 34px; box-shadow: 0 24px 56px rgba(0,99,61,.2); }
.mini-code-wrap { justify-self: center; width: 270px; border-radius: 28px; background: #fff; box-shadow: 0 30px 80px rgba(21,55,40,.1); padding: 18px; }
.mini-code-wrap img { width: 100%; height: auto; border-radius: 15px; }
.platform-copy > p { margin: 0 0 18px; color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.platform-copy h2 { margin: 0 0 14px; color: #173d2c; font-size: 32px; letter-spacing: -.04em; }
.platform-copy > span { display: block; max-width: 440px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.platform-copy small { display: block; margin-top: 20px; color: #839088; }
.platform-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.platform-tags b { border: 1px solid rgba(21,55,40,.18); border-radius: 99px; font-size: 11px; font-weight: 650; padding: 8px 12px; }
.inner-page > .back-link { margin: 0 max(32px, calc((100vw - 1280px) / 2)) 100px; }

.events-page { background: #f5f2ea; }
.events-intro {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 8vw;
  width: min(1500px, calc(100% - 64px));
  margin: 54px auto 38px;
}
.events-intro h1 { font-size: clamp(38px, 4vw, 54px); }
.events-intro > p { margin: 0; }
.event-filter { display: flex; justify-content: space-between; width: min(1500px, calc(100% - 64px)); margin: 0 auto; border-bottom: 1px solid var(--line); padding-bottom: 14px; color: #53675b; font-size: 12px; font-weight: 700; scroll-margin-top: 20px; }
.events-board { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; width: min(1500px, calc(100% - 64px)); margin: 22px auto 0; }
.event-card {
  position: relative;
  display: flex;
  min-height: 178px;
  flex-direction: column;
  border: 1px solid rgba(21,61,44,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.42);
  padding: 18px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.event-card:hover { border-color: rgba(0,139,67,.28); background: rgba(234,240,230,.88); transform: translateY(-2px); }
.event-number { position: absolute; top: 19px; right: 18px; color: #9ba49e; font-size: 10px; font-weight: 700; }
.event-card-main { display: flex; min-height: 0; flex: 1; flex-direction: column; }
.event-card-main h2 { display: -webkit-box; overflow: hidden; min-height: 46px; margin: 13px 34px 10px 0; color: #163b2b; font-size: 18px; letter-spacing: -.025em; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.event-card-main time { margin-top: auto; color: #52695c; font-size: 13px; font-weight: 650; }
.event-card-main small { display: block; overflow: hidden; margin-top: 5px; color: #6f7d75; font-size: 12px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.event-pill { width: max-content; border-radius: 99px; background: #d6e7d7; color: #087642; font-size: 12px; font-weight: 750; padding: 5px 9px; }
.event-facts { margin-top: 13px; border-top: 1px solid rgba(21,61,44,.09); padding-top: 10px; }
.event-facts span { display: flex; align-items: baseline; gap: 5px; color: #6f7d75; font-size: 11px; letter-spacing: .02em; }
.event-facts b { color: #183d2d; font-size: 15px; letter-spacing: -.02em; }
.event-arrow { position: absolute; right: 18px; bottom: 17px; color: var(--brand); font-size: 16px; }
.events-board + .site-footer { margin-top: 72px; }
.data-note { width: min(1280px, calc(100% - 64px)); margin: 18px auto 100px; color: #929b95; font-size: 11px; }

.site-header--dark { color: #fff; }
.site-header--dark .primary-nav,
.site-header--dark .language-select select { color: #fff; }
.site-header--dark .language-select::after { border-color: #fff; }
.match-page { min-height: 100vh; background: #143c2b; color: #f4f0e6; }
.match-hero { width: min(1180px, calc(100% - 64px)); margin: 90px auto 80px; }
.match-hero > a { color: rgba(255,255,255,.6); font-size: 13px; }
.match-hero > p { margin: 90px 0 20px; color: #92d5aa; font-size: 11px; font-weight: 800; letter-spacing: .19em; }
.match-hero h1 { max-width: 950px; margin: 0; font-size: clamp(46px, 5.4vw, 68px); letter-spacing: -.06em; line-height: 1.04; }
.match-meta { display: flex; gap: 68px; margin-top: 56px; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.match-meta span { display: flex; flex-direction: column; gap: 8px; }
.match-meta b { color: #fff; font-size: 24px; letter-spacing: -.04em; }
.leaderboard { width: min(1180px, calc(100% - 64px)); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.2); padding: 58px 0 100px; }
.leaderboard-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.leaderboard-head h2 { margin: 0; font-size: 28px; }
.leaderboard-head span { border-radius: 99px; background: rgba(91,225,136,.12); color: #92d5aa; font-size: 11px; padding: 8px 11px; }
.leader-row { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; min-height: 82px; border-bottom: 1px solid rgba(255,255,255,.13); }
.leader-row span { color: rgba(255,255,255,.4); font-size: 12px; }
.leader-row strong { font-size: 16px; letter-spacing: .03em; }
.leader-row b { color: #b9edc9; font-size: 20px; }
.leaderboard > p { color: rgba(255,255,255,.35); font-size: 11px; }

.score-detail { width: min(1500px, calc(100% - 64px)); margin: 38px auto 0; padding-bottom: 100px; }
.score-detail-topline { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 18px; }
.score-detail-topline > a { color: rgba(255,255,255,.64); font-size: 13px; }
.score-detail-topline > span, .score-detail-topline-actions > span { display: flex; align-items: center; gap: 8px; color: #a8e8bd; font-size: 11px; font-weight: 700; }
.score-detail-topline > span i, .score-detail-topline-actions > span i { width: 7px; height: 7px; border-radius: 50%; background: #61df89; box-shadow: 0 0 0 5px rgba(97,223,137,.12); }
.score-detail-topline > span.is-finished, .score-detail-topline-actions > span.is-finished { color: rgba(255,255,255,.5); }
.score-detail-topline > span.is-finished i, .score-detail-topline-actions > span.is-finished i { background: #b8b7ad; box-shadow: none; }
.score-detail-topline-actions { display: flex; align-items: center; gap: 18px; }
.score-detail-topline-actions > button { min-height: 40px; border: 1px solid rgba(185,237,201,.5); border-radius: 999px; background: transparent; color: #c8f4d5; cursor: pointer; font: inherit; font-size: 12px; font-weight: 750; padding: 0 18px; }
.score-detail-topline-actions > button:hover, .score-detail-topline-actions > button:focus-visible { background: #b9edc9; color: #123a29; }
.score-detail-hero { padding: 72px 0 64px; }
.score-detail-hero .section-kicker { margin-bottom: 20px; color: #92d5aa; }
.score-detail-hero h1 { max-width: 1050px; margin: 0; color: #f4f0e6; font-size: clamp(40px, 4.2vw, 60px); letter-spacing: -.05em; line-height: 1.08; }
.score-detail-meta { display: flex; flex-wrap: wrap; gap: 54px; margin-top: 42px; color: rgba(255,255,255,.43); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.score-detail-meta span { display: flex; min-width: 120px; flex-direction: column; gap: 7px; }
.score-detail-meta b { color: #fff; font-size: 14px; font-weight: 650; letter-spacing: 0; text-transform: none; }
.score-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.14); padding: 22px 0; }
.score-toolbar > div { display: flex; flex-wrap: wrap; gap: 8px; }
.score-toolbar button { min-height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: transparent; color: rgba(255,255,255,.65); font: inherit; font-size: 12px; padding: 0 16px; cursor: pointer; }
.score-toolbar button:hover, .score-toolbar button.is-active { border-color: #b9edc9; background: #b9edc9; color: #123a29; }
.score-toolbar .score-broadcast-entry {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border-color: #f4f0e6;
  background: #f4f0e6;
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  color: #123a29;
  font-size: 13px;
  font-weight: 800;
  padding: 0 20px;
}
.score-toolbar .score-broadcast-entry:hover,
.score-toolbar .score-broadcast-entry:focus-visible {
  border-color: #b9edc9;
  background: #b9edc9;
  color: #123a29;
}
.score-toolbar > p { margin: 0; color: rgba(255,255,255,.42); font-size: 11px; }
.course-par-list { display: flex; gap: 10px; overflow-x: auto; padding: 0 0 18px; scrollbar-width: thin; }
.course-par-list > span { display: grid; min-width: 250px; grid-template-columns: 34px 1fr; align-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.035); padding: 14px 16px; }
.course-par-list small { grid-row: 1 / 3; color: #92d5aa; font-size: 10px; font-weight: 800; }
.course-par-list b { overflow: hidden; color: rgba(255,255,255,.88); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.course-par-list em { margin-top: 4px; color: rgba(255,255,255,.4); font-size: 9px; font-style: normal; }
.score-table-wrap { width: max-content; max-width: 100%; overflow-x: auto; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: #1b4131; box-shadow: 0 28px 80px rgba(0,0,0,.16); scrollbar-color: rgba(185,237,201,.5) rgba(255,255,255,.05); }
.score-table { width: 1350px; min-width: 1350px; table-layout: fixed; border-collapse: separate; border-spacing: 0; font-variant-numeric: tabular-nums; }
.score-table th, .score-table td { width: 39px; min-width: 39px; max-width: 39px; height: 50px; border-right: 1px solid rgba(255,255,255,.075); border-bottom: 1px solid rgba(255,255,255,.085); background: #1b4131; color: rgba(255,255,255,.84); font-size: 13px; text-align: center; }
.score-table thead th { height: 46px; background: #2a513d; color: rgba(255,255,255,.78); font-size: 11px; font-weight: 750; }
.score-table tbody tr:nth-child(even) td { background: #1e4534; }
.score-table tbody tr:hover td { background: #244d3a; }
.score-table th:first-child, .score-table td:first-child { position: sticky; z-index: 3; left: 0; width: 66px; min-width: 66px; max-width: 66px; background: #1b4131; color: #a8e8bd; }
.score-table th:nth-child(2), .score-table td:nth-child(2) { position: sticky; z-index: 3; left: 66px; width: 156px; min-width: 156px; max-width: 156px; background: #1b4131; text-align: left; padding: 0 16px; }
.score-table tbody tr:nth-child(even) td:first-child, .score-table tbody tr:nth-child(even) td:nth-child(2) { background: #1e4534; }
.score-table tbody tr:hover td:first-child, .score-table tbody tr:hover td:nth-child(2) { background: #244d3a; }
.score-table thead th:first-child, .score-table thead th:nth-child(2) { z-index: 4; background: #2a513d; }
.score-table tbody td:nth-child(2) strong { display: block; overflow: hidden; color: #fff; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.score-table th:nth-last-child(6), .score-table td:nth-last-child(6),
.score-table th:nth-last-child(5), .score-table td:nth-last-child(5),
.score-table th:nth-last-child(4), .score-table td:nth-last-child(4),
.score-table th:nth-last-child(2), .score-table td:nth-last-child(2) {
  width: 49px;
  min-width: 49px;
  max-width: 49px;
}
.score-table th:nth-last-child(3), .score-table td:nth-last-child(3) {
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  white-space: nowrap;
}
.score-table th:last-child, .score-table td:last-child {
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.score-table tbody td:nth-last-child(-n+6) { color: #d9eee0; font-weight: 650; }
.score-par-row th { height: 36px; background: #224936; color: rgba(255,255,255,.62); font-size: 10px; }
.score-par-row th:first-child, .score-par-row th:nth-child(2) { background: #224936; }
.score-table tbody tr:last-child td { border-bottom: 0; }
.score-mark { display: inline-grid; width: 27px; height: 27px; place-items: center; font-size: 13px; font-weight: 650; }
.score-mark--birdie {
  border: 1px solid #79dfa0;
  border-radius: 50%;
  background: rgba(93, 220, 137, .2);
  box-shadow: inset 0 0 0 1px rgba(185, 237, 201, .08);
  color: #d7ffe3;
}
.score-mark--eagle {
  border: 3px double #153d2c;
  border-radius: 50%;
  background: #91e6ad;
  box-shadow: 0 0 0 2px rgba(145, 230, 173, .18);
  color: #103b28;
  font-weight: 800;
}
.score-mark--bogey {
  border: 1px solid rgba(239, 191, 143, .34);
  color: rgba(255, 218, 183, .7);
}
.score-table .score-total,
.score-table .to-par {
  display: inline-grid;
  min-width: 34px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1;
}
.score-table .score-total {
  background: rgba(255,255,255,.075);
  color: #fff;
}
.score-table .to-par {
  background: rgba(185,237,201,.13);
  color: #c9f8d7;
}
.score-table .to-par.is-under-par {
  background: #b54e45;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  color: #fff7f3;
}
.score-table thead th:nth-last-child(4),
.score-table thead th:nth-last-child(2) {
  color: #f2fff6;
  font-size: 12px;
  font-weight: 850;
}
.score-state { min-height: 400px; margin: 0; color: rgba(255,255,255,.58); padding-top: 100px; text-align: center; }
.score-state--error { color: #ffd0a4; }
.team-scoreboard { border-top: 1px solid rgba(255,255,255,.16); }
.team-scoreboard > div { display: grid; min-height: 86px; grid-template-columns: 70px 1fr 130px auto; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.team-scoreboard span { color: rgba(255,255,255,.42); font-size: 12px; }
.team-scoreboard strong { color: #fff; font-size: 18px; }
.team-scoreboard small { color: rgba(255,255,255,.44); font-size: 10px; }
.team-scoreboard b { color: #b9edc9; font-size: 24px; }
.team-scoreboard > p { color: rgba(255,255,255,.5); padding: 60px 0; }

body.score-broadcast-active { overflow: hidden; background: #fff; }
body.score-broadcast-active .match-page { min-height: 0; height: 100svh; overflow: hidden; background: #fff; color: #18372a; }
body.score-broadcast-active .site-header { display: none; }
.score-detail--broadcast {
  --broadcast-row-height: 36px;
  --broadcast-font-size: 11px;
  --broadcast-score-size: 24px;
  position: relative;
  display: grid;
  width: 100%;
  height: 100svh;
  grid-template-rows: auto auto minmax(0,1fr);
  margin: 0;
  padding: max(8px,env(safe-area-inset-top)) max(10px,env(safe-area-inset-right)) max(8px,env(safe-area-inset-bottom)) max(10px,env(safe-area-inset-left));
  background: #fff;
  color: #18372a;
}
.score-detail--size-medium { --broadcast-row-height: 43px; --broadcast-font-size: 12px; --broadcast-score-size: 27px; }
.score-detail--size-large { --broadcast-row-height: 50px; --broadcast-font-size: 14px; --broadcast-score-size: 31px; }
.score-detail--broadcast > #scoreDetailContent { display: grid; min-width: 0; min-height: 0; height: 100%; grid-template-rows: auto auto minmax(0,1fr); }
.score-detail--broadcast .score-state { color: #5c6c64; }
.score-detail--broadcast .score-state--error { color: #a7443f; }
.broadcast-header { display: grid; min-width: 0; grid-template-columns: 128px minmax(0,1fr) auto auto; align-items: center; gap: 18px; min-height: 70px; border-bottom: 1px solid #dce5df; padding: 7px 4px 9px; }
.broadcast-brand { min-width: 0; }
.broadcast-brand-logo { display: block; width: 112px; height: 30px; background: url('https://oss.golflive.cn/ui/icons/golflive_g.png') left center / contain no-repeat; }
.broadcast-title { min-width: 0; }
.broadcast-title h1 { overflow: hidden; margin: 0; color: #152f24; font-size: clamp(17px,2vw,25px); font-weight: 780; letter-spacing: -.025em; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.broadcast-title p { display: flex; overflow: hidden; gap: 14px; margin: 6px 0 0; color: #6b7871; font-size: 10px; line-height: 1.2; white-space: nowrap; }
.broadcast-title p span { overflow: hidden; text-overflow: ellipsis; }
.broadcast-status { min-width: 116px; text-align: right; }
.broadcast-status > span { display: flex; align-items: center; justify-content: flex-end; gap: 7px; color: #227d4d; font-size: 11px; font-weight: 780; }
.broadcast-status > span i { width: 7px; height: 7px; border-radius: 50%; background: #35ad68; box-shadow: 0 0 0 4px rgba(53,173,104,.12); }
.broadcast-status > span.is-finished { color: #718078; }
.broadcast-status > span.is-finished i { background: #8d9993; box-shadow: none; }
.broadcast-status small { display: block; margin-top: 6px; color: #7b8781; font-size: 9px; font-variant-numeric: tabular-nums; }
.broadcast-actions { position: relative; display: flex; gap: 6px; }
.broadcast-actions button, .broadcast-toolbar button, .broadcast-settings button, .broadcast-settings select { min-height: 40px; border: 1px solid #d4dfd8; border-radius: 9px; background: #fff; color: #29483a; cursor: pointer; font: inherit; font-size: 11px; font-weight: 700; padding: 0 13px; }
.broadcast-actions button:hover, .broadcast-actions button:focus-visible, .broadcast-toolbar button:hover, .broadcast-toolbar button:focus-visible { border-color: #4d8065; background: #edf5f0; }
.broadcast-actions > .broadcast-more-button { display: grid; width: 44px; min-height: 44px; place-items: center; padding: 0; }
.broadcast-more-dots { display: flex; align-items: center; gap: 3px; }
.broadcast-more-dots i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.broadcast-action-menu {
  position: absolute;
  z-index: 25;
  top: calc(100% + 7px);
  right: 0;
  display: none;
  width: 146px;
  gap: 2px;
  border: 1px solid #d8e2dc;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(21,55,40,.18);
  padding: 5px;
}
.broadcast-action-menu.is-open { display: grid; }
.broadcast-action-menu button { width: 100%; min-height: 44px; border: 0; border-radius: 7px; background: transparent; padding: 0 12px; text-align: left; }
.broadcast-action-menu button:hover, .broadcast-action-menu button:focus-visible { background: #edf5f0; color: #174b33; }
.broadcast-toolbar { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid #dce5df; }
.broadcast-toolbar > div { display: flex; gap: 6px; }
.broadcast-toolbar button { min-height: 34px; padding: 0 14px; }
.broadcast-toolbar button.is-active { border-color: #1d6846; background: #1d6846; color: #fff; }
.broadcast-toolbar > span { color: #6e7a74; font-size: 10px; font-weight: 650; }
.broadcast-table-wrap { min-width: 0; min-height: 0; overflow: auto; background: #fff; scrollbar-color: #a8b8ae #eef2ef; scrollbar-width: thin; }
.broadcast-table { width: 100%; min-width: 0; table-layout: fixed; border-collapse: separate; border-spacing: 0; color: #233c31; font-variant-numeric: tabular-nums; }
.broadcast-table thead { position: sticky; z-index: 5; top: 0; }
.broadcast-table th, .broadcast-table td { height: var(--broadcast-row-height); overflow: hidden; border-right: 1px solid #e2e9e4; border-bottom: 1px solid #dfe7e2; background: #fff; font-size: var(--broadcast-font-size); font-weight: 600; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.broadcast-table thead th { height: 34px; background: #eef4f0; color: #344d41; font-size: max(9px,calc(var(--broadcast-font-size) - 1px)); font-weight: 800; }
.broadcast-table tbody tr:nth-child(even) td { background: #f8faf9; }
.broadcast-table tbody tr:hover td { background: #f0f6f2; }
.broadcast-table .col-rank { width: 4.5%; color: #2d704e; font-weight: 800; }
.broadcast-table .col-player { width: 13.5%; padding: 0 7px; text-align: left; }
.broadcast-table .col-player strong { display: block; overflow: hidden; color: #142d22; font-size: calc(var(--broadcast-font-size) + 1px); text-overflow: ellipsis; white-space: nowrap; }
.broadcast-table .col-summary { width: 4.2%; color: #52645a; }
.broadcast-table .col-total { width: 5.2%; }
.broadcast-table .col-finished { width: 6.8%; }
.broadcast-table .col-par { width: 5.4%; }
.broadcast-table .col-team { width: 9%; padding: 0 5px; }
.broadcast-table .score-mark { width: var(--broadcast-score-size); height: var(--broadcast-score-size); color: #283d33; font-size: var(--broadcast-font-size); }
.broadcast-table .score-mark--birdie { border-color: blue; background: blue; box-shadow: none; color: white; }
.broadcast-table .score-mark--eagle { border-color: red; background: red; box-shadow: none; color: white; }
.broadcast-table .score-mark--bogey { border-color: #cbd5cf; background: #f6f8f7; color: #66736d; }
.broadcast-table .score-total, .broadcast-table .to-par { display: inline-grid; min-width: calc(var(--broadcast-score-size) + 5px); height: var(--broadcast-score-size); place-items: center; border-radius: 6px; font-size: calc(var(--broadcast-font-size) + 3px); font-weight: 850; line-height: 1; }
.broadcast-table .score-total { background: #e5f1e9; color: #174b33; }
.broadcast-table .to-par { background: #eef3f0; color: #24553e; }
.broadcast-table .to-par.is-under-par { background: #b54e45; color: #fff; }
.broadcast-par-row th { height: 25px !important; background: #f7f9f8 !important; color: #78867e !important; font-size: 9px !important; font-weight: 700 !important; }
.team-scoreboard--broadcast { min-height: 0; overflow-y: auto; border-top: 0; }
.team-scoreboard--broadcast > div { min-height: var(--broadcast-row-height); grid-template-columns: 50px 1fr 130px 90px; border-color: #dfe7e2; }
.team-scoreboard--broadcast span, .team-scoreboard--broadcast small { color: #6b7871; }
.team-scoreboard--broadcast strong { color: #173429; font-size: calc(var(--broadcast-font-size) + 4px); }
.team-scoreboard--broadcast b { color: #176943; font-size: calc(var(--broadcast-font-size) + 7px); }
.team-scoreboard--broadcast > p { color: #68766f; }
.broadcast-settings { position: fixed; z-index: 30; top: max(12px,env(safe-area-inset-top)); right: max(12px,env(safe-area-inset-right)); display: none; width: min(390px,calc(100vw - 24px)); max-height: calc(100svh - 24px); grid-template-columns: 1fr 1fr; gap: 12px; overflow-y: auto; border: 1px solid #d9e3dd; border-radius: 14px; background: #fff; box-shadow: 0 18px 48px rgba(22,57,41,.18); padding: 18px; }
.broadcast-settings.is-open { display: grid; }
.broadcast-settings-head { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid #e1e8e3; padding-bottom: 12px; }
.broadcast-settings-head h2 { margin: 0; color: #18372a; font-size: 18px; letter-spacing: -.02em; }
.broadcast-settings-head button { min-height: 36px; border-color: #1d6846; background: #1d6846; color: #fff; }
.broadcast-settings > label:not(.broadcast-check) { display: grid; gap: 6px; color: #53645b; font-size: 11px; font-weight: 700; }
.broadcast-settings select { width: 100%; min-height: 42px; appearance: auto; }
.broadcast-check { display: flex; min-height: 42px; align-items: center; gap: 9px; color: #29483a; font-size: 12px; font-weight: 700; }
.broadcast-check input { width: 18px; height: 18px; accent-color: #1d6846; }
.broadcast-copy-link { grid-column: 1 / -1; border-color: #1d6846 !important; background: #edf5f0 !important; color: #174b33 !important; }

@media (max-width: 960px) and (orientation: landscape) {
  .score-detail--broadcast { --broadcast-row-height: 32px; --broadcast-font-size: 9px; --broadcast-score-size: 21px; padding-top: max(4px,env(safe-area-inset-top)); padding-bottom: max(4px,env(safe-area-inset-bottom)); }
  .score-detail--size-medium { --broadcast-row-height: 37px; --broadcast-font-size: 11px; --broadcast-score-size: 24px; }
  .score-detail--size-large { --broadcast-row-height: 43px; --broadcast-font-size: 12px; --broadcast-score-size: 27px; }
  .broadcast-header { grid-template-columns: 92px minmax(0,1fr) auto auto; gap: 10px; min-height: 52px; padding: 4px 2px 6px; }
  .broadcast-brand-logo { width: 82px; height: 23px; }
  .broadcast-title h1 { font-size: 15px; }
  .broadcast-title p { gap: 8px; margin-top: 4px; font-size: 8px; }
  .broadcast-status { min-width: 100px; }
  .broadcast-status > span { font-size: 9px; }
  .broadcast-status small { margin-top: 3px; font-size: 8px; }
  .broadcast-actions { gap: 4px; }
  .broadcast-actions button { min-height: 34px; border-radius: 7px; font-size: 9px; padding: 0 8px; }
  .broadcast-actions > .broadcast-more-button { width: 44px; min-height: 44px; padding: 0; }
  .broadcast-action-menu { width: 132px; }
  .broadcast-action-menu button { min-height: 44px; font-size: 10px; padding: 0 10px; }
  .broadcast-toolbar { min-height: 39px; }
  .broadcast-toolbar button { min-height: 30px; border-radius: 7px; font-size: 9px; padding: 0 10px; }
  .broadcast-table thead th { height: 28px; font-size: 8px; }
  .broadcast-par-row th { height: 20px !important; font-size: 8px !important; }
  .broadcast-settings { top: 6px; right: 6px; width: min(500px,calc(100vw - 12px)); max-height: calc(100svh - 12px); grid-template-columns: repeat(4,1fr); gap: 8px; padding: 12px; }
  .broadcast-settings-head, .broadcast-copy-link { grid-column: 1 / -1; }
  .broadcast-settings-head { padding-bottom: 8px; }
  .broadcast-settings-head h2 { font-size: 15px; }
  .broadcast-settings-head button { min-height: 32px; }
  .broadcast-settings select { min-height: 36px; font-size: 10px; padding: 0 7px; }
  .broadcast-check { min-height: 34px; font-size: 10px; }
}

.livehi-page { background: #f4f0e7; }
.livehi-hero { position: relative; width: min(1280px, calc(100% - 64px)); min-height: 560px; margin: 48px auto 0; padding: 64px 0 80px; }
.livehi-hero h1 { max-width: 890px; margin: 0; color: #102f21; font-size: clamp(44px, 5vw, 64px); letter-spacing: -.06em; line-height: 1.05; }
.livehi-hero > p:not(.section-kicker) { max-width: 660px; margin-top: 28px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.livehi-tags { display: flex; flex-wrap: wrap; gap: 9px; max-width: 700px; margin-top: 30px; }
.livehi-tags span { border: 1px solid rgba(21,55,40,.15); border-radius: 99px; color: #395949; font-size: 11px; font-weight: 650; padding: 9px 13px; }
.handicap-mark { position: absolute; right: 3%; bottom: 74px; display: flex; width: 240px; height: 240px; align-items: center; justify-content: center; border: 1px solid rgba(0,139,67,.23); border-radius: 50%; color: var(--brand); }
.handicap-mark::before { position: absolute; inset: 24px; border-radius: 50%; background: #dbe8dc; content: ""; }
.handicap-mark span { position: relative; font-size: 62px; font-weight: 750; letter-spacing: -.07em; }
.handicap-mark i { position: absolute; right: 53px; bottom: 58px; font-size: 11px; font-style: normal; font-weight: 800; }
.livehi-principles { display: grid; grid-template-columns: repeat(3, 1fr); width: min(1280px, calc(100% - 64px)); margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.livehi-principles article { min-height: 260px; border-right: 1px solid var(--line); padding: 46px 42px; }
.livehi-principles article:last-child { border: 0; }
.livehi-principles span { color: var(--brand); font-size: 11px; font-weight: 800; }
.livehi-principles h2 { margin: 34px 0 13px; font-size: 25px; letter-spacing: -.04em; }
.livehi-principles p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.livehi-metrics { width: min(1280px, calc(100% - 64px)); margin: 0 auto; padding: 100px 0; }
.livehi-section-heading { display: grid; grid-template-columns: .55fr 1fr; align-items: end; gap: 7vw; margin-bottom: 48px; }
.livehi-section-heading .section-kicker { margin: 0; }
.livehi-section-heading h2 { max-width: 760px; margin: 0; color: #193d2d; font-size: clamp(30px, 3vw, 44px); font-weight: 620; letter-spacing: -.045em; line-height: 1.2; }
.livehi-metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.livehi-metric-grid article { min-height: 245px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 42px; }
.livehi-metric-grid article > span { color: var(--brand); font-size: 11px; font-weight: 750; letter-spacing: .05em; }
.livehi-metric-grid h3 { margin: 28px 0 12px; color: #153728; font-size: 30px; letter-spacing: -.045em; }
.livehi-metric-grid p { max-width: 500px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.livehi-model { display: grid; grid-template-columns: .55fr 1fr; column-gap: 8vw; width: min(1280px, calc(100% - 64px)); margin: 0 auto; border-radius: 28px; background: #153d2c; color: #f4f0e7; padding: 76px; }
.livehi-model-heading .section-kicker { color: #8fd0a6; }
.livehi-model-heading h2 { max-width: 420px; margin: 0; font-size: clamp(34px, 3.5vw, 48px); letter-spacing: -.05em; line-height: 1.08; }
.livehi-model ol { margin: 0; padding: 0; list-style: none; }
.livehi-model li { display: grid; min-height: 118px; grid-template-columns: 48px 1fr; gap: 16px; border-top: 1px solid rgba(255,255,255,.14); padding: 25px 0; }
.livehi-model li > span { color: #8fd0a6; font-size: 11px; font-weight: 750; padding-top: 4px; }
.livehi-model h3 { margin: 0 0 9px; font-size: 19px; letter-spacing: -.025em; }
.livehi-model li p { margin: 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.7; }
.livehi-provisional { grid-column: 2; margin: 28px 0 0; border-left: 2px solid #8fd0a6; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.8; padding: 3px 0 3px 20px; }
.livehi-boundary { display: flex; align-items: center; justify-content: space-between; gap: 60px; width: min(1280px, calc(100% - 64px)); margin: 0 auto; padding: 80px 0; }
.livehi-boundary > div { display: grid; grid-template-columns: 110px 1fr; align-items: start; gap: 34px; }
.livehi-boundary b { color: var(--brand); font-size: 28px; letter-spacing: -.04em; }
.livehi-boundary p { max-width: 720px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.livehi-boundary > a { display: flex; align-items: center; gap: 26px; border-bottom: 1px solid rgba(0,139,67,.4); color: var(--brand); font-size: 13px; font-weight: 700; padding: 0 0 9px; white-space: nowrap; }
.livehi-boundary > a span { font-size: 17px; }
.livehi-note { width: min(1280px, calc(100% - 64px)); margin: 0 auto; border-top: 1px solid var(--line); padding: 34px 0 80px; }
.livehi-note a { color: var(--brand); font-size: 13px; font-weight: 700; }

.account-page { background: #edf1e9; }
.account-hero { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 8vw; width: min(1200px, calc(100% - 64px)); min-height: 620px; margin: 48px auto 0; padding-bottom: 72px; }
.account-page-copy h1 { max-width: 690px; }
.account-page-copy > p:not(.section-kicker) { max-width: 610px; }
.account-hero:has(.account-portal--signed) { grid-template-columns: 1fr; align-items: start; gap: 30px; min-height: 0; margin-top: 34px; padding-bottom: 52px; }
.account-hero:has(.account-portal--signed) .account-page-copy { width: 100%; }
.account-hero:has(.account-portal--signed) .account-page-copy .section-kicker { margin-bottom: 16px; }
.account-hero:has(.account-portal--signed) .account-page-copy h1 { max-width: none; font-size: clamp(40px, 4.25vw, 56px); line-height: 1.05; white-space: nowrap; }
.account-hero:has(.account-portal--signed) .account-page-copy > p:not(.section-kicker) { max-width: 820px; margin: 16px 0 0; font-size: 16px; line-height: 1.7; }
.account-hero:has(.account-portal--signed) .service-pair { margin-top: 20px; }
.service-pair { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.service-pair span { border-radius: 99px; background: #d6e5d6; color: #1a5839; font-size: 13px; font-weight: 700; padding: 11px 16px; }
.service-pair i { color: #7c9182; font-style: normal; }
.account-portal { position: relative; display: flex; width: min(390px, 100%); aspect-ratio: 1; flex-direction: column; align-items: center; justify-content: center; justify-self: end; background: rgba(255,255,255,.84); box-shadow: 0 30px 80px rgba(21,55,40,.09); text-align: center; padding: 42px 38px 34px; box-sizing: border-box; }
.account-login-qr { display: block; width: 228px; height: 228px; margin: 18px auto 0; border: 12px solid #fff; border-radius: 16px; background: #fff; box-shadow: 0 16px 38px rgba(19,55,38,.1); box-sizing: border-box; object-fit: contain; }
.account-portal-title { width: 100%; margin: 0; color: #143526; font-size: 20px; text-align: center; }
.account-portal-hint { width: 100%; min-height: 20px; margin-top: 7px; color: #6f7d75; font-size: 14px; text-align: center; }
.account-qr-state { display: flex; min-height: 220px; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.account-qr-state strong { max-width: 240px; color: #718078; font-size: 14px; font-weight: 600; }
.account-qr-mark { display: grid; width: 82px; height: 82px; place-items: center; border-radius: 22px; background: #e0ebe1; color: #17633e; font-size: 25px; font-weight: 800; letter-spacing: -.06em; }
.account-waiting { display: grid; grid-template-columns: 8px auto; align-items: center; justify-content: center; gap: 7px; width: 100%; margin-top: 12px; color: #37614c; font-size: 13px; }
.account-waiting i { width: 7px; height: 7px; border-radius: 50%; background: #45c174; box-shadow: 0 0 0 5px rgba(69,193,116,.12); animation: account-pulse 1.8s ease-in-out infinite; }
.account-waiting b { grid-column: 1 / 3; color: #7b8981; font-size: 12px; font-weight: 500; }
.account-refresh { margin-top: 18px; border: 0; border-radius: 99px; background: #176943; color: #fff; cursor: pointer; font-size: 12px; font-weight: 700; padding: 12px 18px; }
@keyframes account-pulse { 50% { opacity: .4; transform: scale(.8); } }
.qr-corners { position: absolute; inset: 22px; }
.qr-corners i { position: absolute; width: 34px; height: 34px; border-color: #96aa9b; }
.qr-corners i:nth-child(1) { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; }
.qr-corners i:nth-child(2) { top: 0; right: 0; border-top: 2px solid; border-right: 2px solid; }
.qr-corners i:nth-child(3) { bottom: 0; left: 0; border-bottom: 2px solid; border-left: 2px solid; }
.qr-corners i:nth-child(4) { right: 0; bottom: 0; border-right: 2px solid; border-bottom: 2px solid; }
.account-steps { display: grid; grid-template-columns: repeat(3, 1fr); width: min(1200px, calc(100% - 64px)); margin: 0 auto 90px; border-top: 1px solid var(--line); }
.account-steps article { min-height: 250px; border-right: 1px solid var(--line); padding: 45px 36px; }
.account-steps article:last-child { border: 0; }
.account-steps span { color: var(--brand); font-size: 11px; font-weight: 800; }
.account-steps h2 { margin: 36px 0 12px; font-size: 22px; letter-spacing: -.03em; }
.account-steps p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.account-portal--signed { grid-column: 1 / -1; display: block; width: 100%; aspect-ratio: auto; margin-top: 0; overflow: hidden; border-radius: 28px; background: #153d2c; color: #fff; text-align: left; padding: 0; }
.account-portal--signed .qr-corners { display: none; }
.account-profile-head { display: flex; align-items: center; justify-content: space-between; padding: 38px 42px; }
.account-person { display: flex; min-width: 0; align-items: center; gap: 18px; }
.account-person > img, .account-person > span { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; border-radius: 18px; background: #d8eadb; color: #175438; font-size: 20px; font-weight: 800; object-fit: cover; }
.account-person small, .account-summary-cards small { display: block; color: #b7d0c0; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.account-person h2 { overflow: hidden; margin: 6px 0 0; font-size: 25px; letter-spacing: -.03em; text-overflow: ellipsis; white-space: nowrap; }
.account-profile-head > button { min-height: 44px; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; background: transparent; color: #dce9e0; cursor: pointer; font-size: 13px; font-weight: 700; padding: 11px 18px; }
.account-summary-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.account-summary-cards article { min-height: 132px; padding: 30px 42px; }
.account-summary-cards article + article { border-left: 1px solid rgba(255,255,255,.12); }
.account-summary-cards strong { display: block; margin-top: 13px; font-size: 25px; letter-spacing: -.03em; }
.account-summary-cards span { display: block; margin-top: 7px; color: #a9c0b1; font-size: 13px; }
.account-recipient-panel { padding: 32px 42px 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.account-recipient-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; }
.account-recipient-heading h3 { margin: 0; font-size: 21px; letter-spacing: -.02em; }
.account-recipient-heading p { max-width: 560px; margin: 7px 0 0; color: #a9c0b1; font-size: 14px; line-height: 1.55; }
.account-recipient-heading > span { flex: 0 0 auto; border-radius: 999px; background: rgba(131,215,158,.12); color: #b8efc7; font-size: 12px; font-weight: 750; padding: 8px 12px; }
.account-recipient-tabs { display: inline-grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(0,0,0,.1); padding: 4px; }
.account-recipient-tabs button { min-height: 40px; border: 0; border-radius: 10px; background: transparent; color: #b7cbbd; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; padding: 0 18px; }
.account-recipient-tabs button:hover, .account-recipient-tabs button:focus-visible { color: #fff; outline: 2px solid rgba(131,215,158,.58); outline-offset: 1px; }
.account-recipient-tabs button.is-active { background: #e6f0e5; color: #18422f; box-shadow: 0 7px 20px rgba(2,19,11,.16); }
.account-friend-picker { margin-top: 18px; }
.account-friend-search { position: relative; display: block; }
.account-friend-search input { width: 100%; height: 46px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; outline: 0; background: rgba(255,255,255,.07); color: #fff; font: inherit; font-size: 14px; padding: 0 48px 0 16px; }
.account-friend-search input::placeholder { color: #8ea99a; }
.account-friend-search input:focus { border-color: rgba(131,215,158,.7); box-shadow: 0 0 0 3px rgba(131,215,158,.12); }
.account-friend-search i { position: absolute; top: 14px; right: 18px; width: 14px; height: 14px; border: 2px solid #9cb5a5; border-radius: 50%; pointer-events: none; }
.account-friend-search i::after { position: absolute; right: -5px; bottom: -3px; width: 6px; height: 2px; border-radius: 2px; background: #9cb5a5; content: ""; transform: rotate(45deg); }
.account-selected-friends { margin-top: 14px; }
.account-selected-friends > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.account-selected-friends > div strong { color: #dbeae0; font-size: 12px; }
.account-selected-friends > div button { border: 0; background: transparent; color: #a7dcb6; cursor: pointer; font: inherit; font-size: 12px; font-weight: 700; padding: 4px 0; }
.account-selected-friends ul { display: flex; gap: 8px; margin: 9px 0 0; overflow-x: auto; padding: 0 0 5px; list-style: none; scrollbar-color: rgba(255,255,255,.22) transparent; scrollbar-width: thin; }
.account-selected-friends li { display: flex; flex: 0 0 auto; align-items: center; gap: 7px; border: 1px solid rgba(131,215,158,.24); border-radius: 999px; background: rgba(131,215,158,.09); padding: 5px 10px 5px 5px; }
.account-selected-friends img, .account-selected-friends li > span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: #d8eadb; color: #175438; font-size: 10px; font-weight: 800; object-fit: cover; }
.account-selected-friends b { max-width: 118px; overflow: hidden; color: #e7f1e9; font-size: 12px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.account-friend-list { max-height: 340px; margin-top: 14px; overflow-y: auto; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); scrollbar-color: rgba(131,215,158,.35) transparent; scrollbar-width: thin; }
.account-friend-row { display: grid; min-height: 70px; grid-template-columns: 22px 44px minmax(0,1fr) auto; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.09); cursor: pointer; padding: 10px 14px 10px 10px; transition: background 160ms ease; }
.account-friend-row:last-child { border-bottom: 0; }
.account-friend-row:hover { background: rgba(255,255,255,.045); }
.account-friend-row.is-selected { background: rgba(131,215,158,.1); }
.account-friend-row > input { width: 17px; height: 17px; margin: 0; accent-color: #78d492; cursor: pointer; }
.account-friend-avatar, .account-friend-avatar img { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; background: #d8eadb; color: #175438; object-fit: cover; }
.account-friend-avatar b { font-size: 15px; }
.account-friend-name { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.account-friend-name strong, .account-friend-name small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-friend-name strong { color: #f2f6f3; font-size: 15px; }
.account-friend-name small { color: #9cb5a5; font-size: 13px; }
.account-group-count { color: #9cb5a5; font-size: 12px; white-space: nowrap; }
.account-group-count b { margin-left: 4px; color: #b8efc7; font-size: 16px; font-variant-numeric: tabular-nums; }
.account-friend-state { margin: 0; color: #a9c0b1; font-size: 13px; padding: 32px 10px; text-align: center; }
.account-friend-state.is-error, .account-friend-inline-error { color: #f5b7a2; }
.account-friend-inline-error { margin: 11px 0 0; font-size: 12px; }
.account-product-columns { display: grid; grid-template-columns: 1fr 1fr; }
.account-product-columns > section { padding: 38px 42px 42px; }
.account-product-columns > section + section { border-left: 1px solid rgba(255,255,255,.12); }
.account-product-heading { display: flex; align-items: baseline; gap: 16px; }
.account-product-heading span { color: #83d79e; font-size: 12px; font-weight: 800; }
.account-product-heading h3 { margin: 0; font-size: 21px; }
.account-plan-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; margin-top: 23px; }
.account-plan-grid button { position: relative; min-width: 0; min-height: 112px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.055); color: #fff; cursor: pointer; font: inherit; text-align: left; padding: 20px 15px 17px; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.account-plan-grid button:hover, .account-plan-grid button:focus-visible, .account-plan-grid button.is-selected { border-color: rgba(131,215,158,.72); outline: 0; background: rgba(131,215,158,.12); transform: translateY(-2px); }
.account-plan-grid button:disabled { border-color: rgba(255,255,255,.09); cursor: not-allowed; opacity: .42; transform: none; }
.account-plan-grid small { display: block; overflow: hidden; color: #d1e2d7; font-size: 14px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.account-plan-grid strong { display: block; margin-top: 17px; font-size: 28px; letter-spacing: -.04em; }
.account-plan-grid strong i { margin-right: 3px; color: #a9c0b1; font-size: 14px; font-style: normal; }
.account-plan-grid span { position: absolute; top: 17px; right: 13px; color: rgba(255,255,255,.42); font-size: 11px; font-weight: 700; }
.account-purchase-note { display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.09); padding: 24px 42px; }
.account-purchase-note p { max-width: 760px; margin: 0; color: #b8cbbf; font-size: 14px; line-height: 1.7; }
.account-purchase-note span { flex: 0 0 auto; color: #b8efc7; font-size: 13px; font-weight: 700; }

.account-payment-overlay { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; overflow-y: auto; background: rgba(8,28,19,.66); padding: 30px; backdrop-filter: blur(14px); }
.account-payment-modal { position: relative; width: min(500px, 100%); border-radius: 28px; background: #f7f6f0; box-shadow: 0 32px 100px rgba(5,25,16,.35); color: #153728; padding: 32px 40px 24px; text-align: left; }
.account-payment-close { position: absolute; top: 20px; right: 20px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(21,55,40,.15); border-radius: 50%; background: transparent; color: #315443; cursor: pointer; font-size: 25px; line-height: 1; }
.account-payment-modal > .section-kicker { margin-bottom: 14px; font-size: 12px; }
.account-payment-modal > h2 { max-width: calc(100% - 48px); margin: 0; font-size: 30px; letter-spacing: -.04em; }
.account-payment-recipients { margin-top: 18px; }
.account-payment-recipients > span { color: #65776d; font-size: 12px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.account-payment-recipients > div { display: flex; gap: 7px; margin-top: 8px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
.account-payment-recipients > div > span { display: flex; flex: 0 0 auto; align-items: center; gap: 7px; border: 1px solid rgba(21,55,40,.12); border-radius: 999px; background: #fff; padding: 5px 10px 5px 5px; }
.account-payment-recipients img, .account-payment-recipients i, .account-payment-recipients > div > span > span { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: #dce9dc; color: #176943; font-size: 10px; font-style: normal; font-weight: 800; object-fit: cover; }
.account-payment-recipients b { max-width: 126px; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.account-payment-summary { display: flex; align-items: baseline; justify-content: space-between; margin-top: 20px; border-bottom: 1px solid rgba(21,55,40,.13); padding-bottom: 20px; }
.account-payment-summary span { color: #65776d; font-size: 14px; }
.account-payment-summary strong { font-size: 36px; letter-spacing: -.04em; }
.account-payment-summary strong i { margin-right: 3px; color: #557063; font-size: 16px; font-style: normal; }
.account-payment-lead { margin: 25px 0 14px; color: #536a5d; font-size: 15px; }
.account-payment-channels { display: grid; gap: 10px; }
.account-payment-channels > button { display: grid; min-height: 76px; grid-template-columns: 46px 1fr auto; align-items: center; gap: 15px; border: 1px solid rgba(21,55,40,.13); border-radius: 17px; background: #fff; color: #153728; cursor: pointer; padding: 13px 17px; text-align: left; transition: border-color 180ms ease, transform 180ms ease; }
.account-payment-channels > button:hover, .account-payment-channels > button:focus-visible { border-color: rgba(0,139,67,.55); outline: 0; transform: translateY(-1px); }
.payment-channel-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: #fff; font-size: 17px; font-style: normal; font-weight: 800; }
.payment-channel-icon--wechat { background: #18a657; }
.payment-channel-icon--alipay { background: #1677ff; }
.account-payment-channels span { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.account-payment-channels strong { font-size: 17px; }
.account-payment-channels small { color: #718078; font-size: 13px; }
.account-payment-channels b { color: #6e8477; font-size: 19px; }
.account-payment-state { display: flex; min-height: 260px; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.account-payment-state > span:not(.account-payment-spinner) { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: #dbe9dc; color: #168548; font-size: 28px; font-weight: 800; }
.account-payment-state.is-failed > span { background: #f0dfd7; color: #9b4e34; }
.account-payment-state strong { font-size: 19px; }
.account-payment-state p { max-width: 360px; margin: -5px 0 0; color: #718078; font-size: 14px; line-height: 1.6; }
.account-payment-state button, .account-payment-qr-wrap > button { min-height: 42px; border: 0; border-radius: 999px; background: #176943; color: #fff; cursor: pointer; font-size: 13px; font-weight: 700; padding: 0 18px; }
.account-payment-spinner { width: 42px; height: 42px; border: 3px solid #d4dfd7; border-top-color: #168548; border-radius: 50%; animation: account-spin 800ms linear infinite; }
@keyframes account-spin { to { transform: rotate(360deg); } }
.account-payment-qr-wrap { display: flex; flex-direction: column; align-items: center; padding: 22px 0 4px; text-align: center; }
.account-payment-channel-badge { border-radius: 999px; background: #e2eee4; color: #177641; font-size: 13px; font-weight: 750; padding: 7px 12px; }
.account-payment-channel-badge.is-alipay { background: #e4efff; color: #1469d9; }
.account-payment-qr-wrap img { width: 198px; height: 198px; margin-top: 12px; border: 10px solid #fff; border-radius: 18px; box-shadow: 0 14px 36px rgba(21,55,40,.11); object-fit: contain; }
.account-payment-qr-wrap h3 { margin: 16px 0 0; font-size: 20px; }
.account-payment-qr-wrap p { margin: 7px 0 15px; color: #718078; font-size: 13px; }
.account-payment-secure { margin: 23px 0 0; border-top: 1px solid rgba(21,55,40,.1); color: #829087; font-size: 12px; line-height: 1.55; padding-top: 18px; text-align: center; }

/* GolfLive music */
.music-page { background: #f4f0e7; }
.music-intro {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: end;
  column-gap: 9vw;
  row-gap: 26px;
  width: min(1240px, calc(100% - 64px));
  margin: 50px auto 44px;
}
.music-intro .section-kicker { grid-column: 1 / 3; margin-bottom: 0; }
.music-intro h1 { margin: 0; color: #102f21; font-size: clamp(44px, 5vw, 64px); letter-spacing: -.06em; line-height: 1.04; }
.music-intro > p:last-child { max-width: 480px; margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.75; }

.music-stage {
  display: grid;
  grid-template-columns: minmax(360px, .76fr) minmax(0, 1.24fr);
  gap: 0;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto 110px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(21,55,40,.1);
}

.music-player-card { position: relative; display: flex; min-height: 650px; flex-direction: column; background: #153d2c; color: #fff; padding: 44px; }
.music-now-label { display: flex; align-items: center; gap: 9px; margin: 0 0 28px; color: #b9edc9; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.music-now-label i { width: 7px; height: 7px; border-radius: 50%; background: #65e491; box-shadow: 0 0 0 5px rgba(101,228,145,.12); }
.music-cover { position: relative; width: min(320px, 100%); aspect-ratio: 1; align-self: center; overflow: hidden; border-radius: 50%; background: #0c2e20; box-shadow: 0 30px 60px rgba(3,20,12,.28); }
.music-cover::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; content: ""; }
.music-cover img { width: 100%; height: 100%; object-fit: cover; }
.music-cover > span { position: absolute; top: 50%; left: 50%; width: 22%; aspect-ratio: 1; border: 8px solid rgba(255,255,255,.55); border-radius: 50%; background: #153d2c; transform: translate(-50%,-50%); }
.music-cover.is-playing { animation: music-spin 22s linear infinite; }
@keyframes music-spin { to { transform: rotate(360deg); } }
.music-current-copy { margin-top: 34px; text-align: center; }
.music-current-copy h2 { overflow: hidden; margin: 0; font-size: 24px; letter-spacing: -.03em; text-overflow: ellipsis; white-space: nowrap; }
.music-current-copy p { margin: 8px 0 0; color: rgba(255,255,255,.62); font-size: 14px; }
.music-like-button { display: inline-flex; min-width: 104px; min-height: 44px; align-items: center; align-self: center; justify-content: center; gap: 7px; margin-top: 15px; border: 1px solid rgba(185,237,201,.25); border-radius: 999px; background: rgba(255,255,255,.07); color: #fff; cursor: pointer; padding: 0 15px; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
.music-like-button:hover:not(:disabled) { border-color: rgba(185,237,201,.58); background: rgba(185,237,201,.14); transform: translateY(-1px); }
.music-like-button:disabled { cursor: default; opacity: .5; }
.music-like-button > span { color: #ff8277; font-size: 18px; line-height: 1; }
.music-like-button > b { min-width: 16px; color: #fff; font-size: 14px; font-variant-numeric: tabular-nums; }
.music-like-button > small { color: #b9edc9; font-size: 11px; font-weight: 700; }
.music-like-button.is-pulsing > span { animation: music-like-pulse 320ms ease; }
.music-like-message { margin: 9px 0 -5px; color: #ffd1c8; font-size: 12px; line-height: 1.45; text-align: center; }
@keyframes music-like-pulse { 50% { transform: scale(1.42); } }
.music-lyric-preview { display: flex; min-height: 58px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; margin-top: 18px; border: 0; border-radius: 12px; background: rgba(255,255,255,.055); color: #fff; cursor: pointer; padding: 9px 16px; text-align: center; }
.music-lyric-preview:hover:not(:disabled) { background: rgba(255,255,255,.09); }
.music-lyric-preview:disabled { cursor: default; opacity: .48; }
.music-lyric-preview small { color: #92d5aa; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.music-lyric-preview strong { display: -webkit-box; overflow: hidden; font-size: 17px; font-weight: 600; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.music-progress { margin-top: 20px; }
.music-progress input { width: 100%; height: 2px; accent-color: #b9edc9; cursor: pointer; }
.music-progress > div { display: flex; justify-content: space-between; margin-top: 7px; color: rgba(255,255,255,.42); font-size: 9px; }
.music-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: auto; padding-top: 24px; }
.music-controls button { display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: rgba(255,255,255,.76); cursor: pointer; font-size: 18px; }
.music-controls button:disabled { cursor: default; opacity: .3; }
.music-controls .music-play-button { width: 60px; height: 60px; background: #f4f0e7; color: #153d2c; font-size: 17px; padding-left: 3px; }
.music-lyrics-panel { position: absolute; z-index: 5; inset: 0; display: flex; flex-direction: column; border-radius: inherit; background: rgba(8,35,23,.94); color: #fff; padding: 40px 38px; -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.music-lyrics-panel[hidden] { display: none; }
.music-lyrics-panel > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.13); padding-bottom: 20px; }
.music-lyrics-panel > header div { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.music-lyrics-panel > header small { color: #92d5aa; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.music-lyrics-panel > header strong { overflow: hidden; font-size: 18px; text-overflow: ellipsis; white-space: nowrap; }
.music-lyrics-panel > header button { display: grid; flex: 0 0 auto; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 24px; }
.music-lyrics-list { flex: 1; overflow-y: auto; padding: 38% 0; scrollbar-color: rgba(185,237,201,.45) transparent; scrollbar-width: thin; }
.music-lyrics-list > button { display: block; width: 100%; min-height: 50px; border: 0; background: transparent; color: rgba(255,255,255,.48); cursor: pointer; font: inherit; font-size: 16px; line-height: 1.55; padding: 11px 8px; text-align: center; transition: color 180ms ease, font-size 180ms ease; }
.music-lyrics-list > button.is-active { color: #b9edc9; font-size: 21px; font-weight: 760; }

.music-library { min-height: 650px; background: rgba(255,255,255,.72); padding: 42px 48px 52px; }
.music-library-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.music-library-heading p { margin: 0; color: #153d2c; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.music-library-heading span { color: #8e9992; font-size: 11px; }
.music-state { border-top: 1px solid var(--line); color: #8a958e; font-size: 13px; padding: 32px 0; }
.music-track-list { max-height: 560px; margin: 0; overflow-y: auto; padding: 0; list-style: none; scrollbar-color: #b8c4bb transparent; scrollbar-width: thin; }
.music-track-list li { border-top: 1px solid rgba(21,55,40,.11); }
.music-track-list li:last-child { border-bottom: 1px solid rgba(21,55,40,.11); }
.music-track-list button { display: grid; width: 100%; min-height: 74px; grid-template-columns: 48px minmax(0, 1fr) 36px; align-items: center; border: 0; background: transparent; color: #183d2d; cursor: pointer; padding: 9px 4px 9px 0; text-align: left; transition: background 160ms ease, color 160ms ease; }
.music-track-list button:hover { background: rgba(211,225,211,.36); }
.music-track-index { color: #a0aaa3; font-size: 10px; }
.music-track-list button > span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.music-track-list strong { overflow: hidden; font-size: 16px; font-weight: 680; text-overflow: ellipsis; white-space: nowrap; }
.music-track-list small { display: flex; min-width: 0; align-items: center; justify-content: flex-start; gap: 14px; overflow: hidden; color: #78857d; font-size: 12px; white-space: nowrap; text-align: left; }
.music-track-list small > span { overflow: hidden; text-overflow: ellipsis; }
.music-track-list small > i { flex: 0 0 auto; color: #a16d68; font-size: 11px; font-style: normal; font-variant-numeric: tabular-nums; }
.music-row-action { justify-self: end; color: #789184; font-size: 11px; font-weight: 500; }
.music-track-list li.is-active strong, .music-track-list li.is-active .music-row-action { color: var(--brand); }
.music-equalizer { display: inline-flex; height: 13px; align-items: end; gap: 2px; }
.music-equalizer b { width: 2px; border-radius: 2px; background: var(--brand); animation: music-bar .75s ease-in-out infinite alternate; }
.music-equalizer b:nth-child(1) { height: 6px; }
.music-equalizer b:nth-child(2) { height: 12px; animation-delay: -.3s; }
.music-equalizer b:nth-child(3) { height: 8px; animation-delay: -.5s; }
@keyframes music-bar { to { height: 3px; } }

@media (max-width: 1200px) {
  .events-board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .account-section { grid-template-columns: 1fr; }
  .account-visual { width: min(340px, 100%); margin: 0 auto 42px; }
  .account-copy { margin: 0 auto; }
}

@media (max-width: 900px) {
  .home-section, .download-section, .account-section { grid-template-columns: 1fr; }
  .home-section { padding-top: 76px; padding-bottom: 76px; }
  .download-objects { width: min(620px, 100%); margin: 60px auto 0; }
  .download-section { gap: 42px; }
  .download-platform { min-height: 132px; border-right: 0; border-bottom: 1px solid var(--line); }
  .download-platform:last-child { border-bottom: 0; }
  .event-heading, .events-intro { grid-template-columns: 1fr; gap: 30px; }
  .event-section .section-copy h2 { font-size: clamp(32px, 5.5vw, 48px); }
  .event-row { grid-template-columns: minmax(0, 1fr) auto; }
  .account-visual { width: min(340px, 100%); margin: 0 auto 42px; }
  .account-copy { margin: 0 auto; }
  .account-copy h2 { font-size: 42px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer p:first-of-type { grid-column: 1 / 3; grid-row: 2; }
  .platform-split { grid-template-columns: 1fr; }
  .platform-panel:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .events-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .livehi-hero { min-height: 720px; }
  .handicap-mark { right: auto; bottom: 60px; left: 0; width: 220px; height: 220px; }
  .handicap-mark span { font-size: 56px; }
  .handicap-mark i { right: 48px; bottom: 54px; }
  .livehi-principles, .account-steps { grid-template-columns: 1fr; }
  .livehi-principles article, .account-steps article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .livehi-section-heading, .livehi-model { grid-template-columns: 1fr; }
  .livehi-section-heading { gap: 24px; }
  .livehi-model { gap: 44px; padding: 58px 46px; }
  .livehi-provisional { grid-column: 1; }
  .livehi-boundary { align-items: flex-start; flex-direction: column; gap: 34px; }
  .account-hero { grid-template-columns: 1fr; padding-top: 70px; }
  .account-hero:has(.account-portal--signed) { gap: 26px; margin-top: 28px; padding-top: 20px; padding-bottom: 44px; }
  .account-hero:has(.account-portal--signed) .account-page-copy h1 { font-size: clamp(38px, 6vw, 50px); }
  .account-portal { justify-self: start; }
  .account-portal--signed { grid-column: 1; }
  .account-product-columns { grid-template-columns: 1fr; }
  .account-product-columns > section + section { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .music-intro { grid-template-columns: 1fr; gap: 24px; }
  .music-intro .section-kicker { grid-column: auto; margin-bottom: 0; }
  .music-stage { grid-template-columns: 1fr; }
  .music-player-card { min-height: 620px; }
  .music-library { min-height: auto; }
  .score-detail { width: calc(100% - 40px); }
  .score-detail-meta { gap: 28px; }
  .score-toolbar { align-items: flex-start; flex-direction: column; gap: 14px; }
}

@media (max-width: 560px) {
  .home-section { padding-right: 20px; padding-left: 20px; }
  .section-copy h2, .page-intro h1, .events-intro h1, .livehi-hero h1, .account-page-copy h1 { font-size: 38px; }
  .download-objects { min-height: 430px; }
  .download-platforms { border-radius: 22px; }
  .download-platform { min-height: 124px; grid-template-columns: 72px minmax(0, 1fr); gap: 17px; padding: 21px 18px; }
  .download-platform > img { width: 58px; height: 58px; border-radius: 15px; }
  .download-platform--mini > img { width: 72px; height: 72px; }
  .download-platform > div { grid-template-columns: 1fr; column-gap: 0; }
  .download-platform p { display: none; }
  .download-platform b { grid-column: 1; grid-row: auto; width: max-content; margin-top: 10px; padding: 8px 11px; }
  .download-objects::before { width: 330px; height: 330px; }
  .app-object { left: 0; width: 82%; padding: 16px; }
  .app-object img { width: 72px; height: 72px; }
  .mini-object { right: 0; width: 53%; }
  .event-heading { margin-bottom: 34px; }
  .event-section .section-copy h2 { font-size: clamp(20px, 6.2vw, 32px); }
  .event-list { grid-template-columns: 1fr; }
  .event-row { min-height: 138px; grid-template-columns: 1fr auto; padding: 18px; }
  .event-status { grid-column: 1; }
  .event-action { font-size: 0; }
  .event-action b { font-size: 18px; }
  .account-chip--member { left: -3%; }
  .account-chip--ai { right: -2%; }
  .account-copy h2 { font-size: clamp(30px, 9.4vw, 34px); line-height: 1.15; }
  .account-copy > p:not(.section-kicker, .secure-note) { font-size: 16px; line-height: 1.75; }
  .secure-note { font-size: 14px !important; }
  .site-footer { grid-template-columns: 1fr; padding: 50px 24px; }
  .site-footer p:first-of-type { grid-column: auto; grid-row: auto; }
  .footer-legal { align-items: flex-start; justify-self: start; flex-direction: column; gap: 8px; }
  .platform-split, .events-intro, .event-filter, .events-board, .data-note, .match-hero, .leaderboard, .livehi-hero, .livehi-principles, .livehi-metrics, .livehi-model, .livehi-boundary, .livehi-note, .account-hero, .account-steps { width: calc(100% - 40px); }
  .platform-panel { min-height: 560px; padding: 44px 26px; }
  .events-board { grid-template-columns: 1fr; }
  .event-card { min-height: 165px; }
  .match-hero { margin-top: 70px; }
  .match-hero > p { margin-top: 70px; }
  .match-meta { gap: 28px; }
  .leader-row { grid-template-columns: 50px 1fr auto; }
  .livehi-hero { min-height: 680px; margin-top: 26px; padding-top: 48px; }
  .livehi-hero > p:not(.section-kicker) { font-size: 16px; }
  .livehi-tags { margin-top: 23px; }
  .handicap-mark { width: 180px; height: 180px; }
  .handicap-mark::before { inset: 18px; }
  .handicap-mark span { font-size: 45px; }
  .handicap-mark i { right: 39px; bottom: 43px; }
  .livehi-principles article { padding: 36px 26px; }
  .livehi-metrics { padding: 72px 0; }
  .livehi-metric-grid { grid-template-columns: 1fr; }
  .livehi-metric-grid article { min-height: auto; padding: 34px 26px; }
  .livehi-model { border-radius: 20px; padding: 44px 26px; }
  .livehi-model li { grid-template-columns: 38px 1fr; }
  .livehi-boundary { padding: 60px 0; }
  .livehi-boundary > div { grid-template-columns: 1fr; gap: 14px; }
  .livehi-note { padding-bottom: 64px; }
  .account-hero { width: calc(100% - 40px); }
  .account-hero:has(.account-portal--signed) { margin-top: 18px; padding-top: 14px; }
  .account-hero:has(.account-portal--signed) .account-page-copy h1 { font-size: 34px; line-height: 1.12; white-space: normal; }
  .account-portal { width: 100%; }
  .account-login-qr { width: min(228px, 64vw); height: min(228px, 64vw); }
  .account-profile-head { align-items: flex-start; padding: 28px 24px; }
  .account-person { gap: 13px; }
  .account-person > img, .account-person > span { width: 48px; height: 48px; flex-basis: 48px; border-radius: 14px; }
  .account-person h2 { max-width: 48vw; font-size: 19px; }
  .account-summary-cards { grid-template-columns: 1fr; }
  .account-summary-cards article { min-height: 112px; padding: 26px 24px; }
  .account-summary-cards article + article { border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .account-recipient-panel { padding: 28px 24px 30px; }
  .account-recipient-heading { gap: 16px; }
  .account-recipient-heading > span { display: none; }
  .account-recipient-tabs { display: grid; width: 100%; }
  .account-recipient-tabs button { padding: 0 10px; }
  .account-friend-list { max-height: 310px; }
  .account-friend-row { grid-template-columns: 20px 42px minmax(0,1fr); gap: 11px; padding-right: 8px; padding-left: 6px; }
  .account-friend-avatar, .account-friend-avatar img { width: 42px; height: 42px; }
  .account-group-count { grid-column: 3; margin-top: -6px; }
  .account-product-columns > section { padding: 32px 24px 36px; }
  .account-plan-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .account-plan-grid button { min-height: 108px; }
  .account-purchase-note { align-items: flex-start; flex-direction: column; gap: 13px; padding: 24px; }
  .account-payment-overlay { align-items: end; padding: 12px; }
  .account-payment-modal { max-height: calc(100vh - 24px); overflow-y: auto; border-radius: 24px; padding: 30px 22px 24px; }
  .account-payment-close { top: 14px; right: 14px; }
  .account-payment-modal > h2 { font-size: 25px; }
  .account-payment-summary strong { font-size: 31px; }
  .hero-live-stats { bottom: 22px; width: calc(100% - 24px); grid-template-columns: 1fr; border-radius: 14px; }
  .hero-live-stats > p { min-height: 34px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); padding: 0 15px; }
  .hero-live-stats > div { overflow-x: auto; scrollbar-width: none; }
  .hero-live-stats > div::-webkit-scrollbar { display: none; }
  .hero-live-stats > div > span { min-width: 99px; min-height: 62px; padding: 9px 14px; }
  .hero-live-stats b { font-size: 18px; }
  .hero-live-stats small { font-size: 11px; }
  .music-intro, .music-stage { width: calc(100% - 32px); }
  .music-intro { margin: 66px auto 42px; }
  .music-intro h1 { font-size: 42px; }
  .music-player-card { min-height: 540px; padding: 30px 24px; }
  .music-cover { width: min(270px, 82vw); }
  .music-current-copy h2 { font-size: 21px; }
  .music-lyrics-panel { padding: 30px 22px; }
  .music-library { padding: 34px 24px 42px; }
  .music-track-list { max-height: none; }
  .score-detail { width: calc(100% - 24px); margin-top: 22px; padding-bottom: 64px; }
  .score-detail-topline { padding-bottom: 14px; }
  .score-detail-hero { padding: 50px 0 44px; }
  .score-detail-hero h1 { font-size: 38px; line-height: 1.08; }
  .score-detail-meta { display: grid; grid-template-columns: 1fr 1fr; margin-top: 32px; }
  .score-detail-meta span:first-child { grid-column: 1 / 3; }
  .score-toolbar > div { width: 100%; }
  .score-toolbar button { min-height: 36px; padding: 0 13px; }
  .score-toolbar .score-broadcast-entry { flex-basis: 100%; margin-top: 4px; margin-left: 0; }
  .score-toolbar > p { line-height: 1.5; }
  .course-par-list > span { min-width: 220px; }
  .score-table { width: 1272px; min-width: 1272px; }
  .score-table th, .score-table td { width: 37px; min-width: 37px; max-width: 37px; }
  .score-table th:first-child, .score-table td:first-child { min-width: 52px; width: 52px; }
  .score-table th:nth-child(2), .score-table td:nth-child(2) { left: 52px; min-width: 128px; width: 128px; padding: 0 12px; }
  .team-scoreboard > div { min-height: 76px; grid-template-columns: 44px 1fr auto; gap: 12px; }
  .team-scoreboard small { display: none; }
  .team-scoreboard strong { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .download-platform { opacity: 1; transform: none; }
  .music-cover.is-playing, .music-equalizer b, .music-like-button.is-pulsing > span, .account-payment-spinner { animation: none; }
}

#app{min-height:100vh}.static-loading{display:grid;min-height:100vh;place-items:center;background:#f7f3ea}.static-loading img{width:170px;height:auto}img{max-width:100%}
