:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #161616;
  --yellow: #f5d800;
  --neon: #c8ff00;
  --orange: #ff6a00;
  --orange2: #ff9500;
  --text: #f0f0f0;
  --muted: #888;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

button.go-link {
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 0;
  position: relative;
  overflow: hidden;
}

/* Ticker posicionado dentro da hero, full-width */
.hero-ticker {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 48px;
  flex-shrink: 0;
}

/* radial glow bg */
.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  color: #000;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  padding: 4px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 216, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(245, 216, 0, 0);
  }
}

.hero-logo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 40px rgba(200, 255, 0, 0.3), 0 0 80px rgba(255, 106, 0, 0.15);
  margin-bottom: 32px;
}



.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-headline {
  font-family: 'Saira Condensed', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: none;
  animation: none;
  max-width: 800px;
}

.hero-headline .highlight {
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(245, 216, 0, 0.3), 2px 2px 0 rgba(255, 106, 0, 0.4);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  color: #e0e0e0;
  margin: 20px auto 0;
  max-width: 650px;
  line-height: 1.5;
  font-weight: 500;
}

.hero-sub strong {
  color: var(--yellow);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.cta-btn:hover::before {
  transform: translateX(100%);
}

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

.cta-tg {
  background: linear-gradient(135deg, #0088cc, #005fa3);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 136, 204, 0.4);
}

.cta-wpp {
  background: linear-gradient(135deg, #1db954, #2ecc71) !important;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2), 0 10px 36px rgba(29, 185, 84, 0.45);
  animation: wpp-pulse 2.4s ease-in-out infinite;
}

@keyframes wpp-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2), 0 10px 36px rgba(29, 185, 84, 0.45);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0.12), 0 16px 48px rgba(29, 185, 84, 0.7);
  }
}

.cta-wpp:hover {
  animation: none;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.25), 0 20px 52px rgba(29, 185, 84, 0.85);
}

.cta-btn svg {
  flex-shrink: 0;
}

/* ─── PLATFORMS ─── */
.platforms {
  padding: 60px 24px;
  text-align: center;
  background: var(--dark);
  border-top: 1px solid rgba(245, 216, 0, 0.06);
}

.platforms-label {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.platform-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.platform-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.pb-shopee {
  background: rgba(238, 77, 45, 0.12);
  color: #ee4d2d;
  border-color: rgba(238, 77, 45, 0.25);
}

.pb-amazon {
  background: rgba(255, 153, 0, 0.10);
  color: #ff9900;
  border-color: rgba(255, 153, 0, 0.25);
}

.pb-magalu {
  background: rgba(0, 160, 255, 0.10);
  color: #00a0ff;
  border-color: rgba(0, 160, 255, 0.25);
}

.pb-ml {
  background: rgba(255, 230, 0, 0.10);
  color: #ffe600;
  border-color: rgba(255, 230, 0, 0.25);
}

/* ─── FEATURES ─── */
.features {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Black Ops One', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(245, 216, 0, 0.3);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feat-card {
  background: var(--card);
  border: 1px solid rgba(245, 216, 0, 0.08);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 216, 0, 0.2);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.feat-title {
  font-family: 'Black Ops One', cursive;
  font-size: 1.15rem;
  color: var(--yellow);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feat-desc {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

/* ─── SAMPLE DEALS ─── */
.deals {
  padding: 80px 24px;
  background: var(--dark);
  border-top: 1px solid rgba(245, 216, 0, 0.06);
}

.deals-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 0;
}

.deal-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.deal-store-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 3px;
  z-index: 2;
}

.tag-shopee {
  background: #ee4d2d;
  color: #fff;
}

.tag-amazon {
  background: #ff9900;
  color: #000;
}

.tag-magalu {
  background: #00a0ff;
  color: #fff;
}

.tag-ml {
  background: #ffe600;
  color: #000;
}

.deal-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #000;
  font-family: 'Black Ops One', cursive;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.deal-img-wrap {
  height: 180px;
  /* Aumentado um pouco para acomodar melhor as fotos */
  background: #1a1a1a;
  overflow: hidden;
  /* Garante que a imagem não vaze ao fazer o zoom */
  position: relative;
}

.deal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Faz a foto preencher todo o espaço sem distorcer */
  transition: transform 0.3s ease;
}

/* Efeito de zoom na foto ao passar o mouse no card */
.deal-card:hover .deal-img-wrap img {
  transform: scale(1.08);
}

.deal-info {
  padding: 16px 18px 20px;
}

.deal-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.deal-old {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: line-through;
}

.deal-new {
  font-family: 'Black Ops One', cursive;
  font-size: 1.5rem;
  color: var(--yellow);
  text-shadow: 0 0 12px rgba(245, 216, 0, 0.4);
}

.deal-coupon {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-box {
  background: rgba(255, 106, 0, 0.15);
  border: 1px dashed var(--orange);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  color: var(--orange2);
  font-size: 0.9rem;
}

.coupon-label {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--yellow), transparent);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  text-align: left;
}

.step-num {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #000;
  font-family: 'Black Ops One', cursive;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(245, 216, 0, 0.3);
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-family: 'Black Ops One', cursive;
  font-size: 1.2rem;
  color: var(--yellow);
  margin-bottom: 6px;
  margin-top: 20px;
}

.step-content p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 80px 24px;
  background: var(--dark);
  border-top: 1px solid rgba(245, 216, 0, 0.06);
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 28px;
  position: relative;
}

.testi-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 14px;
}

.testi-text {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Black Ops One', cursive;
  font-size: 1rem;
  color: #000;
}

.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.testi-loc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── COUNTER ─── */
.counter-strip {
  padding: 48px 24px;
  background: linear-gradient(90deg, #0d0d0d, #161200, #0d0d0d);
  border-top: 1px solid rgba(245, 216, 0, 0.1);
  border-bottom: 1px solid rgba(245, 216, 0, 0.1);
}

.counter-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.counter-val {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(245, 216, 0, 0.4);
  display: block;
}

.counter-label {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 2px;
  font-family: 'Bebas Neue', cursive;
}

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: 'KO';
  position: absolute;
  font-family: 'Black Ops One', cursive;
  font-size: 40vw;
  color: rgba(245, 216, 0, 0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.final-cta h2 {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(2.2rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
}

.final-cta h2 span {
  color: var(--yellow);
}

.final-cta p {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 48px;
  position: relative;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  font-family: 'Black Ops One', cursive;
  font-size: 1.2rem;
  letter-spacing: 2px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-big:hover {
  transform: translateY(-4px);
}

.cta-big-tg {
  background: linear-gradient(135deg, #0088cc, #005fa3);
  color: #fff;
  box-shadow: 0 8px 40px rgba(0, 136, 204, 0.5);
}

.cta-big-wpp {
  background: linear-gradient(135deg, #0b3d20, #1a6b40) !important;
  color: #e8f5e9;
  border: 1px solid rgba(245, 216, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(245, 216, 0, 0.1), 0 10px 48px rgba(0, 0, 0, 0.5);
  animation: wpp-pulse-big 2.4s ease-in-out infinite;
}

@keyframes wpp-pulse-big {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(245, 216, 0, 0.1), 0 10px 48px rgba(0, 0, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 9px rgba(245, 216, 0, 0.15), 0 20px 60px rgba(26, 107, 64, 0.75);
  }
}

.cta-big-wpp:hover {
  animation: none;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 0 7px rgba(245, 216, 0, 0.2), 0 24px 64px rgba(26, 107, 64, 0.9);
}

/* ─── FOOTER ─── */
footer {
  padding: 32px 24px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-logo {
  font-family: 'Black Ops One', cursive;
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--orange);
}

footer p {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── TICKER ─── */
.ticker {
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange));
  overflow: hidden;
  padding: 10px 0;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
  gap: 48px;
}

.ticker-inner span {
  display: inline-block;
  padding: 0 32px;
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800;
  color: #000;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 32px 18px 0;
  }

  .hero-logo-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .hero-sub br {
    display: none;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 22px;
    font-size: 1rem;
  }

  .hero-cta {
    margin-top: 28px;
  }

  nav {
    padding: 12px 16px;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .btn-tg,
  .btn-wpp {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .steps::before {
    left: 30px;
  }

  .step-num {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
}

/* ─── LIGHTNING ANIM ─── */
@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }

  75% {
    opacity: 1;
  }

  80% {
    opacity: 0.7;
  }
}

.hero h1 {
  animation: flicker 4s ease-in-out infinite;
}

/* ─── HERO MEMBERS BADGE ─── */
.hero-members-badge {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #bbb;
  letter-spacing: 0.3px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}

.hero-members-badge strong {
  color: #4ade80;
  font-weight: 700;
}

.hero-members-badge span {
  color: var(--orange);
  font-weight: 600;
}

/* ─── STICKY CTA (mobile) ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 16px 16px;
  background: linear-gradient(to top, rgba(10,10,10,0.98) 70%, transparent);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1db954, #2ecc71) !important;
  color: #fff;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 -4px 24px rgba(29, 185, 84, 0.4), 0 4px 20px rgba(29, 185, 84, 0.5);
  animation: wpp-pulse 2.4s ease-in-out infinite;
}

/* Esconde o sticky em desktop (tela larga) */
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

/* ─── LIVE TOAST (social proof) ─── */
.live-toast {
  position: fixed;
  bottom: 88px; /* acima do sticky CTA no mobile */
  left: 16px;
  z-index: 300;
  background: rgba(22, 22, 22, 0.96);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-left: 3px solid #4ade80;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #e0e0e0;
  max-width: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.live-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.live-toast strong {
  color: #fff;
  font-weight: 700;
}

@media (min-width: 768px) {
  .live-toast {
    bottom: 32px;
  }
}
