/* ============================================================
   JetX Review — style.css
   Palette: #0D0D0D near-black · #F5C400 JetX yellow · white surface
   ============================================================ */

/* 1. Reset & Base
–––––––––––––––– */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-black:     #0D0D0D;
  --clr-yellow:    #F5C400;
  --clr-yellow-dk: #D4A800;
  --clr-yellow-lt: #FFF9DC;
  --clr-bg:        #F7F7F7;
  --clr-surface:   #ffffff;
  --clr-border:    #E0E0E0;
  --clr-muted:     #6b7280;
  --clr-text:      #111111;
  --clr-pro:       #16a34a;
  --clr-con:       #dc2626;
  --radius:        10px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.07);
  --shadow-md:     0 4px 16px rgba(0,0,0,.12);
  --font:          Arial, Helvetica, sans-serif;
  --max-w:         800px;
  --header-h:      56px; /* kept for reference, no longer used for offset */
  --section-gap:   3rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 1rem;

}

/* 2. Read Progress Bar
–––––––––––––––––––––– */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--clr-yellow);
  z-index: 999;
  transition: width .1s linear;
}

/* 3. Layout
–––––––––– */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
main { padding-bottom: 6rem; }

/* 4. Sticky Header
––––––––––––––––– */
.site-header {
  height: var(--header-h);
  background: var(--clr-surface);
  border-bottom: 2px solid var(--clr-yellow);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
}
.site-header .logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .logo-wrap img {
  height: 28px;
  width: auto;
  display: block;
}

/* spacer pushes nav to the right */
.header-spacer { flex: 1; }

.header-nav {
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* Language selector */
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: 5px;
  color: var(--clr-text);
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 500;
  padding: .35rem .65rem;
  line-height: 1.2;
  height: auto;
  cursor: pointer;
  transition: border-color .2s;
  text-transform: uppercase;
}
.lang-select:hover { border-color: var(--clr-yellow); }
.lang-select option { background: #fff; color: var(--clr-text); }

/* Find Casino button */
.btn-find-casino {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--clr-yellow);
  color: var(--clr-black);
  padding: .35rem .9rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: .78rem;
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-find-casino:hover { background: var(--clr-yellow-dk); transform: translateY(-1px); }

/* 5. Hero
–––––––– */
.hero {
  padding: 2.5rem 0 2rem;
  background: var(--clr-black);
  color: #fff;
}
.hero .section-label { color: var(--clr-yellow); }
.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
  color: #fff;
}
.hero .lead {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.hero-meta span { display: flex; align-items: center; gap: .35rem; }

/* 6. Demo Block
––––––––––––––– */
.demo-section {
  padding: 2rem 0;
  background: var(--clr-black);
  border-bottom: 1px solid rgba(245,196,0,.15);
}
.demo-wrap {
  background: #141414;
  border: 1px solid rgba(245,196,0,.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(245,196,0,.08);
}
.demo-header {
  padding: 1rem 1.25rem .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.demo-header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.demo-header p {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
}

/* Placeholder (background image, click-to-load) */
.demo-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  overflow: hidden;
}

/* background image for placeholder */
.demo-placeholder-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/background.webp');
  background-size: cover;
  background-position: center;
  transition: opacity .4s;
}
.demo-placeholder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  transition: opacity .4s;
}

/* Play button inside placeholder */
.demo-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  z-index: 2;
  cursor: pointer;
  transition: opacity .4s;
}
.demo-play-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--clr-yellow);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 0 rgba(245,196,0,.5);
  animation: pulse 2s infinite;
  transition: transform .2s;
}
.demo-play-btn:hover .demo-play-circle { transform: scale(1.08); }
.demo-play-circle svg { margin-left: 4px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,196,0,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(245,196,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,196,0,0); }
}
.demo-play-label {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}

/* Hide placeholder / show iframe after click */
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s .1s;
}
.demo-iframe-wrap.loaded .demo-placeholder-bg,
.demo-iframe-wrap.loaded .demo-placeholder-overlay,
.demo-iframe-wrap.loaded .demo-play-btn { opacity: 0; pointer-events: none; }
.demo-iframe-wrap.loaded iframe { opacity: 1; pointer-events: auto; }

.demo-footer {
  padding: .875rem 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Primary button — yellow */
.btn-primary {
  display: inline-block;
  background: var(--clr-yellow);
  color: var(--clr-black);
  padding: .6rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--clr-yellow-dk); transform: translateY(-1px); }

/* Mobile: portrait iframe 9/16 with 90% width cap */
@media (max-width: 600px) {
  .demo-iframe-wrap {
    aspect-ratio: 9/16;
    width: 90%;
    margin: 0 auto;
  }
}

/* 7. Sections generic
–––––––––––––––––––– */
section {
  padding: var(--section-gap) 0;
  border-bottom: 1px solid var(--clr-border);
}
section:last-of-type { border-bottom: none; }

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-yellow-dk);
  margin-bottom: .5rem;
}
h2.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
h3.sub-title {
  font-size: 1rem;
  font-weight: 650;
  margin: 1.25rem 0 .5rem;
}
p + p { margin-top: .75rem; }

/* 8. Quick Info Cards
–––––––––––––––––––– */
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 600px) {
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
}
.qi-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-yellow);
  border-radius: var(--radius);
  padding: .875rem 1rem;
  box-shadow: var(--shadow-sm);
}
.qi-card .qi-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: .25rem;
}
.qi-card .qi-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}

/* 9. How It Works Diagram
–––––––––––––––––––––––– */
.crash-diagram {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 1.5rem 0;
  overflow-x: auto;
}
.crash-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
  min-width: 90px;
}
.crash-step .cs-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.25rem;
}
.cs-start .cs-icon { background: #fef9c3; }
.cs-grow  .cs-icon { background: #dcfce7; }
.cs-crash .cs-icon { background: #fee2e2; }
.crash-step .cs-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--clr-text);
}
.crash-step .cs-sub {
  font-size: .7rem;
  color: var(--clr-muted);
}
.crash-arrow {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #d1d5db, #9ca3af);
  position: relative;
  min-width: 20px;
}
.crash-arrow::after {
  content: '';
  position: absolute;
  right: -1px; top: -4px;
  border: 5px solid transparent;
  border-left-color: #9ca3af;
}

.mult-timeline {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, #fef08a 0%, #F5C400 60%, #dc2626 100%);
  margin: 1rem 0 .5rem;
}
.mult-timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--clr-muted);
}

/* 10. RTP / Odds bars
–––––––––––––––––––– */
.odds-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.odds-item-meta {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  margin-bottom: .3rem;
}
.odds-item-meta .oi-range { font-weight: 600; color: var(--clr-text); }
.odds-item-meta .oi-freq  { color: var(--clr-muted); }
.odds-bar-track {
  height: 7px;
  background: var(--clr-border);
  border-radius: 4px;
  overflow: hidden;
}
.odds-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--clr-yellow);
  transition: width .6s ease;
}

/* 11. Gameplay Obs
–––––––––––––––––– */
.obs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .75rem;
  margin-top: .5rem;
}
.obs-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: .875rem 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.obs-mult { font-size: 1.1rem; font-weight: 700; color: var(--clr-black); }
.obs-freq  { font-size: .78rem; color: var(--clr-muted); }
.obs-bar-track {
  height: 5px;
  background: var(--clr-border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: .4rem;
}
.obs-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--clr-yellow);
}

/* 12. Strategies
–––––––––––––––– */
.strategy-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
}
.strategy-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-yellow);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.strategy-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--clr-text);
}
.strategy-card p, .strategy-card ul {
  font-size: .88rem;
  color: var(--clr-muted);
}
.strategy-card ul { padding-left: 1.1rem; margin-top: .3rem; }
.strategy-card ul li { margin-bottom: .2rem; }
.warning-note {
  margin-top: 1rem;
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .85rem;
  color: #92400e;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

/* 13. Comparison Table
––––––––––––––––––––– */
.table-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 480px;
}
.compare-table th, .compare-table td {
  padding: .65rem .9rem;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}
.compare-table th {
  background: var(--clr-bg);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr-muted);
  font-weight: 700;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .col-jetx { background: var(--clr-yellow-lt); }
.compare-table th.col-jetx {
  background: var(--clr-yellow-lt);
  color: #7a6000;
}

/* 14. Pros & Cons
–––––––––––––––– */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pc-col {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.pc-col h3 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}
.pc-col.pros h3 { color: var(--clr-pro); }
.pc-col.cons h3 { color: var(--clr-con); }
.pc-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.pc-col ul li {
  font-size: .88rem;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}
.pc-col.pros ul li::before { content: '✓'; color: var(--clr-pro); font-weight: 700; flex-shrink:0; }
.pc-col.cons ul li::before { content: '✕'; color: var(--clr-con); font-weight: 700; flex-shrink:0; }

/* 15. FAQ Accordion
–––––––––––––––––– */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: .9rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  text-align: left;
  gap: .75rem;
  transition: background .2s;
}
.faq-q:hover { background: var(--clr-bg); }
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--clr-border);
  display: grid; place-items: center;
  font-size: .7rem;
  color: var(--clr-muted);
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-q .faq-icon {
  transform: rotate(180deg);
  background: var(--clr-yellow);
  color: var(--clr-black);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.1rem;
}
.faq-a-inner {
  padding-bottom: .9rem;
  font-size: .88rem;
  color: var(--clr-muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 300px; }



/* 18. Footer
–––––––––––– */
.site-footer {
  border-top: 1px solid var(--clr-border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .78rem;
  color: var(--clr-muted);
}
.site-footer a { color: var(--clr-muted); }

/* 19. Key Takeaway
–––––––––––––––––– */
.key-takeaway {
  background: var(--clr-yellow-lt);
  border-left: 3px solid var(--clr-yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: .85rem 1rem;
  font-size: .88rem;
  color: var(--clr-text);
  margin: 1.25rem 0;
}
.key-takeaway strong { color: #7a6000; }

/* 20. Mobile overrides
––––––––––––––––––––– */
@media (max-width: 600px) {
  :root { --section-gap: 2rem; }
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
  #sticky-cta { bottom: .75rem; right: .75rem; }
  .cta-section { padding: 1.5rem 1rem; }
  .header-nav .lang-select { font-size: .72rem; padding: .28rem .5rem; }
  .btn-find-casino { font-size: .72rem; padding: .3rem .65rem; }
}

/* 20. Author Block
–––––––––––––––––– */
.author-compact {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.author-compact img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(245,196,0,.5);
}
.author-compact a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  text-decoration: none;
}
.author-compact a:hover { color: var(--clr-yellow); }

.author-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.author-card img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--clr-yellow);
}
.author-card-body { flex: 1; min-width: 0; }
.author-card-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: .1rem;
}
.author-card-role {
  font-size: .78rem;
  color: var(--clr-muted);
  margin-bottom: .65rem;
}
.author-card-bio {
  font-size: .85rem;
  color: var(--clr-text);
  margin-bottom: .7rem;
  line-height: 1.6;
}
.author-method {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .85rem;
}
.author-method li {
  font-size: .82rem;
  color: var(--clr-muted);
  display: flex;
  gap: .45rem;
  align-items: flex-start;
}
.author-method li::before {
  content: '\2192';
  color: var(--clr-yellow-dk);
  font-weight: 700;
  flex-shrink: 0;
}
.author-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-yellow-dk);
  text-decoration: none;
}
.author-link:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .author-card { flex-direction: column; gap: .85rem; }
  .author-card img { width: 56px; height: 56px; margin: 0 auto;}
  .author-card-name {text-align: center;}
  .author-card-role {text-align: center;}
  .author-card-bio {text-align: justify;}
}

/* 21. Review Pages Content 
–––––––––––––––––––––––– */
.content-area { padding: 3rem 0; }
.content-area p { margin-bottom: 1rem; color: var(--clr-text); line-height: 1.7; }
.content-area ul, .content-area ol { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--clr-text); }
.content-area li { margin-bottom: .5rem; }
.content-table-wrapper { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--clr-border); border-radius: 5px; }
.content-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 500px; }
.content-table th, .content-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--clr-border); }
.content-table th { background: var(--clr-surface); font-weight: 700; color: var(--clr-muted); text-transform: uppercase; font-size: .8rem; text-align: center;}
.content-table tr:hover td { background: rgba(245, 196, 0, 0.05); }
.content-cta {
  display: inline-block; background: var(--clr-yellow); color: #000;
  font-weight: 700; padding: .85rem 1.8rem; border-radius: var(--radius);
  text-decoration: none; margin: 1.5rem 0; transition: background .2s, transform .1s;
  width: 100%;
    text-align: center;
}
.content-cta:hover { background: var(--clr-yellow-dk); transform: translateY(-2px); }
.casino-logo { max-width: 120px; height: auto; display: block; }
.hero img.hero-casino-logo { max-width: 100%; margin: 1.5rem auto 0 auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.4); background: #fff; padding: 10px; display: block; }

.content-area {
      padding: 3rem 0;
    }
    .content-area h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--clr-black);
      margin: 1.5rem 0 .75rem;
    }
    .content-area p {
      margin-bottom: 1rem;
      color: var(--clr-text);
      line-height: 1.7;
    }
    .content-area ul, .content-area ol {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
      color: var(--clr-text);
    }
    .content-area li { margin-bottom: .5rem; }
    
    /* 16. CTA Footer
–––––––––––––– */
.cta-section {
  background: var(--clr-black);
  border: 1px solid rgba(245,196,0,.25);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}
.cta-section h2 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.cta-section p  { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 1.1rem; }

/* 17. Sticky Mini CTA
–––––––––––––––––––– */
#sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--clr-yellow);
  color: var(--clr-black);
  padding: .55rem 1.1rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245,196,0,.4);
  transition: opacity .3s, transform .3s, background .2s;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 900;
}
#sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#sticky-cta:hover   { background: var(--clr-yellow-dk); }