/* ==========================================================================
   TAB66 - Brand Design System
   Colors follow the official TAB66 platform (navy + orange + gold)
   ========================================================================== */

:root {
  --navy-950: #0a1230;
  --navy-900: #101d4a;
  --navy-800: #16225c;
  --navy-700: #1c2c72;
  --blue-600: #1e3c8c;
  --blue-500: #2a4fae;
  --orange-600: #e67200;
  --orange-500: #ff8100;
  --orange-400: #ff9c33;
  --gold-500: #ffc93c;
  --red-500: #ef3b3a;
  --green-500: #1cb854;
  --ink: #182238;
  --gray-700: #4b5568;
  --gray-500: #6b7280;
  --gray-300: #d7dce5;
  --gray-100: #eff2f7;
  --off-white: #f6f8fb;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(16, 29, 74, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 29, 74, 0.12);
  --shadow-lg: 0 16px 48px rgba(16, 29, 74, 0.18);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: "Montserrat", sans-serif; font-weight: 800; line-height: 1.25; margin: 0 0 .5em; color: var(--navy-900); }
p { margin: 0 0 1em; color: var(--gray-700); }
table { border-collapse: collapse; width: 100%; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.bg-tint { background: var(--off-white); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy p { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,.75); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: rgba(255,129,0,.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.bg-navy .eyebrow { color: var(--gold-500); background: rgba(255,201,60,.12); }

.section-head { max-width: 720px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); }
.section-head p { font-size: 17px; }

/* Inline keyword links inside body copy */
.tlink { color: var(--orange-600); font-weight: 700; }
.tlink:hover { text-decoration: underline; }
.hero .tlink, .bg-navy .tlink { color: var(--gold-500); }
/* On the orange/navy CTA banner, orange links are invisible — make them white + underlined */
.cta-banner .tlink { color: var(--white); text-decoration: underline; }
.lead-copy { max-width: 900px; }
.lead-copy p { font-size: 16.5px; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--orange-400), var(--orange-500) 60%, var(--orange-600));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255,129,0,.35);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(255,129,0,.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-700); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* Header ------------------------------------------------------------------ */
.top-strip {
  background: var(--navy-950);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.top-strip .top-items { display: flex; gap: 20px; flex-wrap: wrap; }
.top-strip .top-items span { display: inline-flex; align-items: center; gap: 6px; }
.top-strip svg { width: 14px; height: 14px; flex: none; }

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 0 rgba(16,29,74,.05);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-900);
}
.main-nav a:hover, .main-nav a.is-active { background: var(--gray-100); color: var(--orange-600); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-signup { border: 2px solid var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-signup:hover { background: var(--navy-800); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--navy-900); }

/* Breadcrumb --------------------------------------------------------------*/
.breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  font-size: 13.5px;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--blue-600); font-weight: 600; }
.breadcrumb span[aria-hidden] { margin: 0 6px; color: var(--gray-300); }

/* Hero ---------------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 500px at 85% -10%, rgba(255,129,0,.25), transparent 60%), linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  padding: 72px 0;
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 48px); }
.hero p.lead { color: rgba(255,255,255,.8); font-size: 18px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-badges .badge-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.85); }
.hero-badges svg { width: 20px; height: 20px; color: var(--gold-500); flex: none; }
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art svg { width: 100%; max-width: 420px; height: auto; }

/* Hero banner carousel (real TAB66 promo banners) */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 700 / 588;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-carousel .slide.is-active { opacity: 1; }
.hero-carousel .slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-carousel .dots {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  display: flex; justify-content: center; gap: 7px;
  z-index: 2;
}
.hero-carousel .dots button {
  width: 8px; height: 8px; padding: 0;
  border: none; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.5);
  transition: width .2s ease, background .2s ease;
}
.hero-carousel .dots button.is-active { width: 22px; background: var(--orange-500); }
.hero small.page-tag { color: var(--gold-500); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; }

/* Trust / stat strip --------------------------------------------------------*/
.stat-strip { background: var(--white); border-bottom: 1px solid var(--gray-100); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 30px 0; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 26px; color: var(--navy-900); font-weight: 800; }
.stat-item span { font-size: 13.5px; color: var(--gray-500); font-weight: 600; }

/* Icon tile ------------------------------------------------------------------*/
.icon-tile {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--orange-400), var(--orange-600));
  color: var(--white);
  flex: none;
}
.icon-tile svg { width: 28px; height: 28px; }
.icon-tile.navy { background: linear-gradient(160deg, var(--blue-500), var(--navy-800)); }
.icon-tile.gold { background: linear-gradient(160deg, #ffe08a, var(--gold-500)); color: var(--navy-900); }

/* Game / feature grid ----------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 19px; margin: 16px 0 8px; }
.card p { font-size: 14.5px; margin-bottom: 14px; }
.card .card-link { font-size: 14px; font-weight: 700; color: var(--orange-600); display: inline-flex; align-items: center; gap: 6px; }

/* Provider / payment badge wall -------------------------------------------*/
.badge-wall { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-800);
}
.pill svg { width: 16px; height: 16px; color: var(--orange-500); }

/* Promo cards ---------------------------------------------------------------*/
.promo-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  overflow: hidden;
}
.promo-card::after {
  content: "";
  position: absolute; inset: auto -30% -60% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,129,0,.35), transparent 70%);
}
.promo-card .ribbon {
  display: inline-block;
  background: var(--orange-500);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .03em;
}
.promo-card h3 { color: var(--white); font-size: 21px; }
.promo-card p { color: rgba(255,255,255,.75); font-size: 14.5px; }
.promo-card .promo-reward { font-size: 30px; font-weight: 800; color: var(--gold-500); margin: 6px 0; }

/* Steps ---------------------------------------------------------------------*/
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Tables ---------------------------------------------------------------------*/
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.data-table { min-width: 560px; }
.data-table th {
  background: var(--navy-900);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14.5px;
  color: var(--ink);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }

/* Comparison table ------------------------------------------------------------*/
.compare-table th:first-child, .compare-table td:first-child { color: var(--gray-500); font-weight: 700; }
/* Highlighted winning column (TAB66) — clearly stands out */
.compare-table th.win {
  background: linear-gradient(180deg, var(--orange-400), var(--orange-600));
  color: var(--white);
  border-left: 2px solid var(--orange-600);
  border-right: 2px solid var(--orange-600);
}
.compare-table td.win,
.compare-table tr:nth-child(even) td.win {
  background: rgba(255,129,0,.16);
  color: var(--navy-900);
  font-weight: 700;
  border-left: 2px solid rgba(255,129,0,.55);
  border-right: 2px solid rgba(255,129,0,.55);
}
.compare-table tr:last-child td.win { border-bottom: 2px solid rgba(255,129,0,.55); }

/* FAQ accordion ----------------------------------------------------------------*/
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 24px; height: 24px; flex: none;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--navy-800);
}
.faq-item summary .plus::before { width: 10px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 10px; transition: transform .2s ease; }
.faq-item[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] summary { border-bottom: 1px solid var(--gray-100); }
.faq-item .faq-body { padding: 4px 20px 20px; font-size: 14.5px; color: var(--gray-700); }

/* CTA banner -----------------------------------------------------------------*/
.cta-banner {
  background: linear-gradient(120deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; font-size: 28px; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; }
.cta-banner .btn-navy { box-shadow: var(--shadow-md); }

/* Feature list with check icons -----------------------------------------------*/
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--gray-700); }
.check-list svg { width: 22px; height: 22px; color: var(--green-500); flex: none; margin-top: 1px; }

/* Contact channels ---------------------------------------------------------*/
.channel-card { text-align: center; }
.channel-card .icon-tile { margin: 0 auto 16px; }

/* Legal / terms content pages ------------------------------------------------*/
.prose { max-width: 820px; }
.prose h2 { font-size: 24px; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 0; margin-bottom: 20px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--gray-700); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--orange-500);
}
.prose ol { padding-left: 22px; color: var(--gray-700); }
.prose ol li { margin-bottom: 10px; }
.callout {
  background: var(--off-white);
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14.5px;
  color: var(--gray-700);
}
.toc { background: var(--off-white); border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 30px; }
.toc h2 { font-size: 16px; margin-bottom: 12px; }
.toc ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.toc a { font-size: 14px; font-weight: 600; color: var(--blue-600); }

/* Footer -----------------------------------------------------------------------*/
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding-top: 56px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; }
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-col h4 { color: var(--white); font-size: 14.5px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: var(--orange-400); }
.footer-mid { border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-mid .badge-wall .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: var(--white); }
.footer-mid .badge-wall .pill svg { color: var(--gold-500); }
.footer-license { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600; }
.footer-license svg { width: 22px; height: 22px; color: var(--gold-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 28px; font-size: 12.5px; color: rgba(255,255,255,.45); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.45); margin-bottom: 8px; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  font-weight: 800; font-size: 12px; color: var(--white);
  margin-right: 8px; vertical-align: middle;
}

/* Responsive ---------------------------------------------------------------------*/
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { max-width: 460px; width: 100%; margin: 0 auto; }
  .hero-carousel { max-width: 460px; }
  .grid-3, .grid-4, .grid-2, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet / large phone */
@media (max-width: 720px) {
  .container { padding: 0 16px; }

  /* Header */
  .main-nav, .header-actions .btn-signup { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header .container { padding-top: 12px; padding-bottom: 12px; gap: 10px; }
  .brand img { height: 32px; }
  .header-actions { gap: 8px; }
  .header-actions .btn-primary { padding: 9px 15px; font-size: 13px; }

  /* Top info strip */
  .top-strip { font-size: 11.5px; }
  .top-strip .container { justify-content: center; gap: 4px 16px; padding-top: 7px; padding-bottom: 7px; }
  .top-strip .top-items { gap: 14px; justify-content: center; }

  /* Spacing */
  section { padding: 40px 0; }
  .section-tight { padding: 26px 0; }
  .hero { padding: 38px 0 !important; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(22px, 6vw, 30px); }
  .section-head p { font-size: 15.5px; }

  /* Hero */
  .hero h1 { font-size: clamp(26px, 7.6vw, 36px); }
  .hero p.lead { font-size: 15.5px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; }
  .hero-badges { gap: 12px 18px; margin-top: 26px; }
  .hero-art { max-width: 400px; }
  .hero-carousel { max-width: 400px; }

  /* Grids -> single column */
  .grid-3, .grid-4, .grid-2, .steps { grid-template-columns: 1fr; }
  .card { padding: 22px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 26px 16px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-mid { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* CTA banner */
  .cta-banner { padding: 30px 22px; text-align: center; justify-content: center; flex-direction: column; }
  .cta-banner .btn { width: 100%; }

  /* Misc */
  .toc ul { grid-template-columns: 1fr; }
  .compare-table { min-width: 560px; }
  .lead-copy p { font-size: 15.5px; }
  .prose h2 { font-size: 21px; }
}

/* Small phones */
@media (max-width: 430px) {
  .top-strip .top-items span:nth-child(3) { display: none; }
  .top-strip .top-items { gap: 12px; }
  .hero h1 { font-size: 25px; }
  .stat-grid { gap: 14px; }
  .stat-item strong { font-size: 22px; }
  .brand img { height: 30px; }
  .header-actions .btn-primary { padding: 8px 13px; font-size: 12.5px; }
  .section-head h2 { font-size: 21px; }
}

/* Mobile nav drawer -------------------------------------------------------------*/
.mobile-nav {
  position: fixed; inset: 0 0 0 auto;
  width: min(320px, 84vw);
  background: var(--navy-950);
  color: var(--white);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 14px 4px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav .close-btn { background: none; border: none; color: var(--white); float: right; cursor: pointer; }
.nav-scrim {
  position: fixed; inset: 0; background: rgba(10,18,48,.6);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 190;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }
