:root {
  --bg: #08090d;
  --bg-2: #11131a;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #ffffff;
  --muted: #c8ccd8;
  --soft: #f6f7fb;
  --ink: #101217;
  --gold: #f4c84a;
  --gold-2: #ffac2f;
  --green: #21c464;
  --red: #e43f4a;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(16, 18, 23, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(228, 63, 74, 0.14), transparent 34%),
    linear-gradient(245deg, rgba(244, 200, 74, 0.13), transparent 32%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7.2vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.5rem);
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 13, 0.88);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 132px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: #f5f7fb;
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.84;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold);
  opacity: 1;
}

.header-actions,
.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn img {
  width: 21px;
  height: 21px;
}

.btn-primary {
  color: #171003;
  background: linear-gradient(135deg, #ffe37b, var(--gold) 48%, var(--gold-2));
  box-shadow: 0 12px 30px rgba(244, 200, 74, 0.28);
}

.btn-ghost {
  color: #fff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.13);
}

.btn-large {
  min-height: 54px;
  padding: 14px 22px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.quick-dock {
  position: fixed;
  left: 14px;
  top: 104px;
  z-index: 45;
  width: 142px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 13, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-dock a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
  font-size: 0.84rem;
  font-weight: 900;
}

.quick-dock a:hover {
  color: #171003;
  background: var(--gold);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.97) 0%, rgba(8, 9, 13, 0.74) 46%, rgba(8, 9, 13, 0.5) 100%),
    linear-gradient(0deg, #08090d 0%, transparent 38%);
}

.hero-grid {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 10vh, 130px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-text {
  max-width: 690px;
  color: #eff2fa;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(244, 200, 74, 0.38);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(244, 200, 74, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6f7fb;
  font-size: 0.86rem;
  font-weight: 800;
}

.dashboard-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.dashboard-top,
.score-line,
.market-board {
  display: grid;
  gap: 10px;
}

.dashboard-top {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.dashboard-top span,
.score-line span,
.market-board span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.dashboard-top strong {
  color: #10210d;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green);
  font-size: 0.8rem;
}

.score-line {
  grid-template-columns: 1fr 1fr;
}

.score-line div,
.market-board div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 13, 0.5);
}

.score-line strong {
  display: block;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.1;
}

.market-board div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.market-board b {
  color: var(--gold);
}

.dashboard-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0f1117;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 38px;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.stats-grid,
.info-grid,
.directory-grid,
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card,
.info-card,
.directory-card,
.page-card,
.game-tile,
.signup-form,
.form-story {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.stat-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  overflow: hidden;
}

.stat-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.stat-card strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.feature-pages {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.page-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.page-card.large {
  grid-row: span 2;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 24px;
}

.page-card img,
.directory-card img,
.info-card img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.page-card img {
  height: 230px;
}

.page-card.large img {
  height: 420px;
}

.card-link {
  color: var(--gold);
  font-weight: 900;
}

.game-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-tile {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}

.game-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.game-tile span {
  position: relative;
  width: 100%;
  padding: 70px 16px 16px;
  background: linear-gradient(0deg, rgba(8, 9, 13, 0.9), transparent);
  font-weight: 900;
  font-size: 1.2rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
}

.split-section.reverse .split-copy {
  order: 2;
}

.split-copy {
  display: grid;
  gap: 20px;
}

.split-media img,
.story-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media img {
  min-height: 420px;
  max-height: 560px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.page-directory {
  padding-top: 40px;
}

.directory-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.directory-card:hover,
.info-card:hover,
.page-card:hover,
.game-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 200, 74, 0.46);
}

.directory-card img {
  height: 150px;
}

.service-depth {
  padding-top: 30px;
}

.depth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.depth-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 200, 74, 0.13), rgba(228, 63, 74, 0.1)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.depth-grid h3 {
  color: #fff;
}

.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(58px, 8vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(244, 200, 74, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 200, 74, 0.2), rgba(228, 63, 74, 0.13)),
    rgba(255, 255, 255, 0.07);
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.94), rgba(8, 9, 13, 0.58)),
    linear-gradient(0deg, #08090d 0%, transparent 45%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  gap: 22px;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #eff2fa;
  font-size: 1.2rem;
}

.card-section .info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.info-card img {
  height: 190px;
}

.sport-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 20px;
}

.sport-switch a {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.sport-switch img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  opacity: 0.78;
}

.sport-switch span {
  position: absolute;
  inset: auto 12px 12px;
  padding: 10px;
  border-radius: 6px;
  background: rgba(8, 9, 13, 0.82);
  font-weight: 900;
}

.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.form-story,
.signup-form {
  padding: clamp(18px, 3vw, 28px);
}

.form-story {
  display: grid;
  gap: 20px;
}

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

.steps-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.steps-grid span {
  color: var(--gold);
  font-weight: 900;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 200, 74, 0.18);
}

.small-note {
  font-size: 0.85rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-bar button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.filter-bar button.active {
  color: #171003;
  border-color: var(--gold);
  background: var(--gold);
}

.filter-grid [hidden] {
  display: none;
}

.offer-timer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.countdown div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.countdown strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion button {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 900;
}

.accordion div {
  display: none;
  padding: 0 16px 12px;
}

.accordion .open + div {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #08090d;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 14px;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #fff;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--gold);
}

.copyright,
.compact-footer {
  padding: 18px 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}

.compact-footer {
  margin-top: 54px;
}

.whatsapp-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(560px, calc(100% - 36px));
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(244, 200, 74, 0.28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(8, 9, 13, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  font-weight: 900;
}

.whatsapp-popup span {
  color: #fff;
}

.whatsapp-popup a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: #07140b;
  background: linear-gradient(135deg, #77ff9e, var(--green));
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .quick-dock {
    display: none;
  }

  .stats-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-pages,
  .page-card.large,
  .split-section,
  .form-section,
  .offer-timer,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-copy {
    order: initial;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  .brand img {
    width: 118px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    right: 14px;
    left: 14px;
    display: none;
    z-index: 55;
  }

  .main-nav {
    top: 82px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 13, 0.96);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .header-actions {
    top: 356px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .menu-open .main-nav,
  .menu-open .header-actions {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .dashboard-card {
    order: -1;
  }

  .page-hero {
    min-height: 480px;
  }

  .game-grid,
  .card-section .info-grid,
  .sport-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-grid,
  .section,
  .page-hero-copy,
  .cta-band,
  .footer-grid {
    width: min(100% - 28px, 1180px);
  }

  .hero-grid {
    padding: 36px 0 46px;
    gap: 22px;
  }

  .hero-actions,
  .button-row,
  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-proof,
  .check-list,
  .steps-grid,
  .form-grid,
  .stats-grid,
  .depth-grid,
  .directory-grid,
  .game-grid,
  .card-section .info-grid,
  .sport-switch,
  .countdown,
  .score-line {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    justify-content: center;
  }

  .dashboard-card img {
    height: 170px;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading {
    justify-items: start;
    text-align: left;
  }

  .page-card.large img,
  .split-media img {
    height: auto;
    min-height: 260px;
  }

  .page-card img,
  .info-card img,
  .directory-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .game-tile {
    min-height: 230px;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero-copy {
    padding: 56px 0;
  }

  .cta-band {
    display: grid;
    margin-bottom: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 86px;
  }

  .whatsapp-popup {
    right: 14px;
    left: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whatsapp-popup a {
    width: 100%;
  }
}
