:root {
  --bg: #050812;
  --bg-deep: #01030a;
  --panel: #0c1424;
  --panel-strong: #111d30;
  --accent: #28d17c;
  --accent-soft: #7cf0b0;
  --gold: #e5b451;
  --text: #f5f8ff;
  --muted: #9aa8bd;
  --line: rgba(124, 240, 176, .18);
  --warning: #f5c45c;
  --shadow: 0 16px 36px rgba(0, 0, 0, .28);
  --header-height: 66px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  background: #02040a;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--text);
  background: #02040a;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.app-shell {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 3%, rgba(40, 209, 124, .12), transparent 25rem),
    radial-gradient(circle at 10% 18%, rgba(229, 180, 81, .06), transparent 20rem),
    var(--bg);
  box-shadow: 0 0 40px rgba(0, 0, 0, .48);
}

.tap-target {
  min-height: 44px;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 50%;
  width: min(100%, 480px);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  color: var(--text);
  background: rgba(1, 3, 10, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.brand {
  min-width: 95px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 1000;
  font-style: italic;
  letter-spacing: -.075em;
  line-height: 1;
}

.brand::before {
  width: 10px;
  height: 10px;
  margin-right: 8px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(40, 209, 124, .13), 0 0 18px rgba(40, 209, 124, .72);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.header-actions .primary,
.hero-cta,
.bottom-nav .primary {
  color: #02140c;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  border-color: rgba(240, 253, 244, .45);
  box-shadow: 0 6px 18px rgba(40, 209, 124, .22);
}

.hero {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}

.hero > img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: 58% center;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 10, 8, .08) 10%, rgba(3, 10, 8, .58) 55%, #06130f 100%),
    linear-gradient(90deg, rgba(3, 10, 8, .58), transparent 72%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 16px 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 5px;
  color: var(--accent-soft);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-heading {
  display: block;
  max-width: 390px;
  margin: 0;
  font-size: clamp(1.52rem, 7vw, 2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero-copy > p:not(.eyebrow):not(.hero-heading) {
  max-width: 390px;
  margin: 9px 0 14px;
  color: #d7eee4;
  font-size: .79rem;
}

.hero-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(240, 253, 244, .4);
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 900;
}

.match-demo {
  margin: 14px 12px 4px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(74, 222, 128, .12), transparent 64%),
    var(--panel-strong);
  border: 1px solid rgba(134, 239, 172, .36);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 8px 0 4px;
  font-size: .8rem;
  text-align: center;
}

.match-row span {
  min-width: 0;
  padding: 8px 6px;
  color: var(--text);
  background: rgba(3, 10, 8, .45);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
}

.match-row strong {
  color: var(--accent-soft);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.match-demo > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 12px;
}

.sport-card {
  position: relative;
  min-width: 0;
  min-height: 142px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.sport-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(3, 10, 8, .92));
}

.sport-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sport-card strong {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px 7px;
  font-size: .7rem;
  text-align: center;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 3px 12px 17px;
}

.quick-grid a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  color: var(--accent-soft);
  background: rgba(16, 42, 34, .9);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.section-block,
main,
.evidence-guide,
.faq,
.related {
  padding: 20px 12px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-heading h1,
.section-heading h2,
main > h1,
.evidence-guide > h2,
.faq > h2,
.related > h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.13;
  letter-spacing: -.035em;
  text-wrap: balance;
}

main {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
}

main > h1 {
  margin-bottom: 13px;
}

.article-list {
  display: grid;
  gap: 10px;
}

.article-card {
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(145deg, var(--panel), rgba(16, 42, 34, .78));
  border: 1px solid var(--line);
  border-radius: 14px;
}

.article-card > a {
  min-height: 118px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 2px 11px;
  padding: 8px;
}

.article-card img {
  grid-row: 1 / 4;
  width: 116px;
  height: 102px;
  object-fit: cover;
  background: var(--panel-strong);
  border-radius: 10px;
}

.article-card span {
  align-self: end;
  color: var(--accent);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-card h2 {
  display: -webkit-box;
  margin: 1px 0 0;
  overflow: hidden;
  font-size: .83rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-card p {
  display: -webkit-box;
  margin: 3px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pager {
  margin-top: 14px;
  overflow-x: auto;
  color: var(--muted);
}

.pager ul {
  min-width: max-content;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pager a,
.pager span {
  min-width: 40px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .7rem;
}

.evidence-guide {
  background:
    radial-gradient(circle at 100% 0, rgba(74, 222, 128, .13), transparent 16rem),
    var(--bg);
}

.evidence-grid {
  display: grid;
  gap: 10px;
  margin-top: 13px;
}

.evidence-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 4px 11px;
  padding: 9px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.evidence-card img {
  grid-row: 1 / 3;
  width: 92px;
  height: 76px;
  object-fit: cover;
  border-radius: 9px;
}

.evidence-card strong {
  align-self: end;
  color: var(--accent-soft);
  font-size: .8rem;
}

.evidence-card span {
  color: var(--muted);
  font-size: .65rem;
  line-height: 1.38;
}

.evidence-note {
  margin: 11px 0 0;
  padding: 9px 10px;
  color: #e9fbed;
  background: rgba(74, 222, 128, .08);
  border-left: 3px solid var(--accent);
  border-radius: 0 9px 9px 0;
  font-size: .67rem;
}

.faq {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.faq details {
  margin-top: 9px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.1rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: .72rem;
}

.site-footer {
  padding: 20px 14px 18px;
  color: var(--muted);
  background: #020705;
  border-top: 1px solid var(--line);
  font-size: .68rem;
  text-align: center;
}

.site-footer strong {
  color: var(--accent-soft);
}

.site-footer p {
  margin: 5px auto 0;
  max-width: 390px;
}

.bottom-nav {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 0;
  width: min(100%, 480px);
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 4px 4px max(8px, env(safe-area-inset-bottom));
  color: #d7eee4;
  background: rgba(3, 10, 8, .97);
  border-top: 1px solid rgba(134, 239, 172, .42);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, .36);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.bottom-nav a {
  min-width: 0;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6px 2px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 780;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
}

.bottom-nav a::before {
  display: block;
  margin: 0;
  color: var(--accent);
  content: "•";
}

.bottom-nav .primary::before {
  color: #032012;
}

.page-end {
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

.breadcrumbs {
  min-width: 0;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: .65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--accent-soft);
}

.article-page {
  padding: 12px 12px 18px;
}

.article-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px 15px 0 0;
}

.article-shell {
  min-width: 0;
  overflow: hidden;
  color: #163027;
  background: #f2fbf5;
  border: 1px solid rgba(134, 239, 172, .35);
  border-top: 0;
  border-radius: 0 0 15px 15px;
}

.article-header {
  padding: 18px 15px 15px;
  background: linear-gradient(180deg, #f7fff9, #e1f7e7);
  border-bottom: 1px solid #b9dfc6;
}

.article-header h1 {
  margin: 0;
  color: #082218;
  font-size: clamp(1.48rem, 7vw, 2rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-top: 10px;
  color: #577767;
  font-size: .67rem;
}

.article-meta a,
.article-meta strong {
  color: #146f3b;
  font-weight: 800;
}

.article-body {
  min-width: 0;
  padding: 19px 15px 8px;
  color: #17372a;
  font-size: .94rem;
  overflow-wrap: anywhere;
  word-break: normal;
}

.article-body,
.article-body p,
.article-body li,
.article-body a {
  overflow-wrap: anywhere;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: #0a4f2b;
  line-height: 1.28;
  letter-spacing: -.025em;
  scroll-margin-top: calc(var(--header-height) + 10px);
  text-wrap: balance;
}

.article-body h2 {
  margin: 1.55em 0 .58em;
  font-size: 1.34rem;
}

.article-body h3 {
  margin: 1.35em 0 .52em;
  font-size: 1.13rem;
}

.article-body h4 {
  margin: 1.25em 0 .5em;
  font-size: 1rem;
}

.article-body p {
  margin: 0 0 1.05em;
}

.article-body a {
  color: #08753a;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.05em;
  padding-left: 1.28em;
}

.article-body li + li {
  margin-top: .38em;
}

.article-body blockquote {
  margin: 1.1em 0;
  padding: 12px 13px;
  color: #16452f;
  background: #dcf6e4;
  border-left: 4px solid #22a95a;
  border-radius: 0 10px 10px 0;
}

.article-body img,
.article-body video,
.article-body iframe {
  max-width: 100%;
  height: auto;
  margin: 1.1em auto;
  border-radius: 10px;
}

.article-body iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.article-body table,
.article-body pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.article-body table {
  width: max-content;
  min-width: 100%;
  margin: 1.1em 0;
  border-collapse: collapse;
  font-size: .78rem;
}

.article-body th,
.article-body td {
  padding: 8px;
  border: 1px solid #b5d8c1;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  color: #0a4f2b;
  background: #dcf6e4;
}

.article-body pre {
  padding: 12px;
  color: #e8fff0;
  background: #09251a;
  border-radius: 10px;
  white-space: pre;
}

.article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.pagebreak {
  padding: 4px 15px 15px;
  overflow-x: auto;
}

.pagebreak ul {
  min-width: max-content;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagebreak a,
.pagebreak span {
  min-width: 40px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  color: #0a4f2b;
  background: #fff;
  border: 1px solid #b5d8c1;
  border-radius: 9px;
}

.previous-next {
  display: grid;
  gap: 8px;
  padding: 0 15px 17px;
}

.previous-next section {
  min-width: 0;
  padding: 10px;
  overflow-wrap: anywhere;
  background: #e1f7e7;
  border: 1px solid #b5d8c1;
  border-radius: 10px;
  font-size: .74rem;
}

.responsible-box {
  margin-top: 12px;
  padding: 11px 12px;
  color: #dff9e7;
  background: rgba(16, 42, 34, .9);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: .7rem;
  text-align: center;
}

.article-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.article-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--accent-soft);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: .7rem;
  font-weight: 800;
  text-align: center;
}

.related {
  margin-top: 17px;
  padding-inline: 0;
}

.related-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.related-card {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.related-card h2 {
  margin: 0;
  font-size: .78rem;
  line-height: 1.35;
}

.tap-target:focus-visible,
.brand:focus-visible,
.article-body a:focus-visible,
.related-card:focus-visible,
.breadcrumbs a:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

/* V8WIN navy, emerald and gold mobile portal */
.hero {
  min-height: 440px;
  border-bottom-color: rgba(229, 180, 81, .2);
}

.hero > img {
  height: 440px;
  object-position: 58% center;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(1, 3, 10, .02) 10%, rgba(1, 3, 10, .48) 53%, #050812 100%),
    linear-gradient(90deg, rgba(1, 3, 10, .88) 0%, rgba(1, 3, 10, .48) 52%, transparent 82%);
}

.hero-copy {
  padding: 34px 18px 24px;
}

.hero-copy h1 {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-heading {
  max-width: 330px;
  color: #fff;
  font-size: clamp(1.85rem, 8.7vw, 2.55rem);
  font-weight: 900;
  line-height: 1.02;
}

.hero-copy > p:not(.eyebrow):not(.hero-heading) {
  max-width: 340px;
  color: #d9e1ee;
  font-size: .82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-link,
.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: #f8e4b5;
  border: 1px solid rgba(229, 180, 81, .42);
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 850;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 12px 0;
  background: linear-gradient(180deg, #050812, transparent);
}

.trust-strip div {
  min-width: 0;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  color: var(--muted);
  background: rgba(12, 20, 36, .88);
  border: 1px solid var(--line);
}

.trust-strip div:first-child {
  border-radius: 13px 0 0 13px;
}

.trust-strip div:last-child {
  border-radius: 0 13px 13px 0;
}

.trust-strip strong {
  color: var(--accent-soft);
  font-size: .82rem;
}

.trust-strip span {
  margin-top: 3px;
  font-size: .61rem;
  font-weight: 800;
  text-align: center;
}

.portal-section,
.feature-panel,
.signup-steps {
  margin: 22px 12px 0;
}

.portal-section h2,
.feature-panel h2,
.signup-steps h2,
.section-title {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.category-card {
  position: relative;
  min-width: 0;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 13px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0, rgba(40, 209, 124, .16), transparent 55%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
}

.category-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(229, 180, 81, .05);
  border-radius: inherit;
}

.category-card strong,
.category-card small {
  position: relative;
  z-index: 2;
  display: block;
}

.category-card strong {
  color: #fff;
  font-size: .84rem;
}

.category-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .61rem;
}

.category-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(229, 180, 81, .08);
  border: 1px solid rgba(229, 180, 81, .28);
  border-radius: 50%;
  font-size: 1rem;
}

.category-card--image {
  min-height: 150px;
  padding: 0;
}

.category-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card--image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 18%, rgba(1, 3, 10, .88) 92%);
}

.category-card--image > span {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 13px;
}

.feature-panel {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(229, 180, 81, .25);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(1, 3, 10, .94) 0%, rgba(1, 3, 10, .72) 58%, rgba(1, 3, 10, .12) 100%);
}

.feature-panel > div {
  position: relative;
  z-index: 2;
  width: 68%;
  padding: 28px 18px;
}

.feature-panel p:not(.section-kicker) {
  margin: 8px 0 13px;
  color: #c7d1e0;
  font-size: .74rem;
}

.signup-steps {
  padding: 19px 15px;
  background:
    linear-gradient(145deg, rgba(40, 209, 124, .08), transparent 56%),
    var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.signup-steps ol {
  display: grid;
  gap: 10px;
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.signup-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.signup-steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #06150e;
  background: linear-gradient(145deg, var(--gold), #f5d98c);
  border-radius: 12px;
  font-size: .68rem;
  font-weight: 950;
}

.signup-steps li strong,
.signup-steps li small {
  display: block;
}

.signup-steps li strong {
  color: #fff;
  font-size: .78rem;
}

.signup-steps li small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .65rem;
}

.wide-cta {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02140c;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  border-radius: 12px;
  font-size: .76rem;
  font-weight: 950;
  box-shadow: 0 9px 22px rgba(40, 209, 124, .2);
}

#bai-viet {
  margin-top: 24px;
}

.article-card {
  background: var(--panel);
  border-color: var(--line);
}

.article-card h2 {
  color: #fff;
}

.evidence-guide,
.faq {
  border-color: var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 9px 0;
  color: #d8e1ef;
  font-size: .68rem;
  font-weight: 750;
}

.site-footer {
  background: #01030a;
  border-top-color: rgba(229, 180, 81, .18);
}

.site-footer strong {
  color: var(--gold);
  font-size: 1rem;
}

.bottom-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 68px;
  padding: 8px 12px max(9px, env(safe-area-inset-bottom));
  background: rgba(1, 3, 10, .97);
  border-top-color: rgba(124, 240, 176, .28);
}

.bottom-nav a {
  min-height: 48px;
  flex-direction: row;
  border: 1px solid rgba(124, 240, 176, .2);
  font-size: 12px;
}

.bottom-nav a::before {
  display: none;
}

.bottom-nav .primary {
  color: #02140c;
}

.article-shell {
  color: #d9e2ef;
  background: var(--panel);
  border-color: var(--line);
}

.article-header {
  background: linear-gradient(180deg, #111d30, #0c1424);
  border-bottom-color: var(--line);
}

.article-header h1 {
  color: #fff;
}

.article-body {
  color: #d9e2ef;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: #fff;
}

.article-body p,
.article-body li,
.article-body blockquote {
  color: #c5d0df;
}

.article-body a {
  color: var(--accent-soft);
}

.article-body table,
.article-body pre,
.article-body blockquote {
  background: #08101d;
  border-color: var(--line);
}

@media (max-width: 365px) {
  .header-actions a {
    padding-inline: 7px;
    font-size: 11px;
  }

  .sport-grid {
    gap: 6px;
    padding-inline: 9px;
  }

  .quick-grid {
    padding-inline: 9px;
  }

  .article-card > a {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .article-card img {
    width: 102px;
  }

  .bottom-nav a {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
