:root {
  --bg-wall: #17181a;
  --bg-wall-soft: #1e2022;
  --paper-1: #f4eedc;
  --paper-2: #ece0c6;
  --ink: #20293d;
  --ink-soft: #47506259;
  --marker-gold: #e3a83b;
  --marker-gold-dark: #c78f2b;
  --music-teal: #3b7a76;
  --music-teal-dark: #2c5b58;
  --tape-plum: #7c4b6b;
  --paper-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.3);

  --font-display: 'Caveat', cursive;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-note: 4px 10px 6px 12px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; height: 100%; }

body {
  margin: 0;
  background: var(--bg-wall);
  color: var(--paper-1);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--marker-gold);
  outline-offset: 3px;
}


.wall-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--bg-wall);
  background-image:
    linear-gradient(174deg, var(--bg-wall-soft) 0%, var(--bg-wall) 45%, var(--bg-wall-soft) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: cover, 180px 180px;
}


.site-header {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  transform: rotate(-2deg);
  transition: transform 0.15s ease;
}

.site-header__brand:hover { transform: rotate(0deg); }

.site-header__logo {
  height: 46px;
  width: auto;
  display: block;
}

@media (max-width: 560px) {
  .site-header__logo { height: 38px; }
}

.site-header__cta {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--paper-1);
  color: var(--paper-1);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.site-header__cta:hover {
  background: var(--paper-1);
  color: var(--ink);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .site-header__cta {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 20px 16px 0;
  }
}


.hero {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 88px;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--music-teal);
  margin: 0 0 18px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 7.5rem);
  line-height: 0.9;
  margin: 0 0 20px;
  color: var(--paper-1);
  transform: rotate(-1.5deg);
}

.hero__tagline {
  font-size: 1.05rem;
  color: #c9c6bd;
  max-width: 480px;
  margin: 0 auto 36px;
}

.btn-marker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--marker-gold);
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius-note);
  box-shadow: var(--paper-shadow);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-marker:hover {
  background: var(--marker-gold-dark);
  transform: translateY(-2px) rotate(-0.5deg);
}

.btn-marker:active { transform: translateY(0) rotate(0); }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 28px auto 0;
  padding: 9px 18px 9px 14px;
  border-radius: 100px;
  background: rgba(244, 238, 220, 0.05);
  border: 1px solid rgba(59, 122, 118, 0.35);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #9fc9c5;
  letter-spacing: 0.03em;
}

.hero__stat-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--music-teal);
  box-shadow: 0 0 0 0 rgba(59, 122, 118, 0.55);
  animation: hero-stat-pulse 2.2s ease-out infinite;
}

@keyframes hero-stat-pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 122, 118, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(59, 122, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 122, 118, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stat-dot { animation: none; }
}

.hero__stat--bump {
  animation: hero-stat-bump 0.4s ease;
}

@keyframes hero-stat-bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.06); border-color: var(--marker-gold); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__stat--bump { animation: none; }
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1.5px solid rgba(244, 238, 220, 0.32);
  color: var(--paper-1);
  padding: 13.5px 26px;
  border-radius: var(--radius-note);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn-outline:hover {
  background: rgba(244, 238, 220, 0.08);
  border-color: var(--paper-1);
  transform: translateY(-1px);
}

.btn-outline:active { transform: translateY(0); }

@media (max-width: 460px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-marker,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}


.wall-section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 100px;
}

.wall-section__header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(244, 238, 220, 0.12);
  padding-bottom: 16px;
}

.wall-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
  color: var(--paper-1);
}

.wall-section__count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--music-teal);
}

.wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 34px 28px;
}

.wall__empty {
  text-align: center;
  color: #8b877c;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 60px 0;
}

.wall__load-more {
  display: block;
  margin: 44px auto 0;
}


.note {
  position: relative;
  background: var(--paper-1);
  color: var(--ink);
  border-radius: var(--radius-note);
  padding: 26px 22px 20px;
  box-shadow: var(--paper-shadow);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  animation: pin-in 0.35s ease both;
}

@keyframes pin-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.note:nth-child(3n+1) { background: var(--paper-1); }
.note:nth-child(3n+2) { background: var(--paper-2); }
.note:nth-child(3n) { background: var(--paper-1); }


.note::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 68px;
  height: 24px;
  background: var(--tape-plum);
  opacity: 0.85;
  transform: translateX(-50%) rotate(var(--tape-angle, -3deg));
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.note__recipient {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--music-teal-dark);
  margin: 0 0 10px;
}

.note__message {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px;
  flex: 1;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.note__message.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.note__expand {
  align-self: flex-start;
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--music-teal-dark);
  padding: 0;
  margin: 0 0 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.note__expand:hover { color: var(--music-teal); }

.note__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.note__time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #6f6a5c;
}

.note__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.note__report {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6f6a5c;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.7;
}

.note__report:hover {
  opacity: 1;
  color: #a13d2f;
}

.note__report.is-confirming {
  color: #a13d2f;
  opacity: 1;
}

.note__report:disabled {
  cursor: default;
  opacity: 0.5;
  text-decoration: none;
}

.note__interactions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}

.note__react {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(32, 41, 61, 0.05);
  border: 1px solid rgba(32, 41, 61, 0.12);
  border-radius: 100px;
  padding: 5px 13px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.note__react:hover {
  background: rgba(227, 168, 59, 0.12);
  border-color: var(--marker-gold);
}

.note__react.is-reacted {
  background: rgba(227, 168, 59, 0.18);
  border-color: var(--marker-gold);
  color: var(--marker-gold-dark);
}

.note__react:disabled {
  cursor: default;
}

.note__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 1px solid rgba(32, 41, 61, 0.12);
  background: rgba(32, 41, 61, 0.04);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.note__share:hover {
  background: rgba(59, 122, 118, 0.12);
  border-color: var(--music-teal);
  color: var(--music-teal-dark);
}

.note__share svg {
  width: 14px;
  height: 14px;
}

.note__share.is-sharing {
  opacity: 0.55;
  cursor: wait;
  animation: share-pulse 0.9s ease-in-out infinite;
}

@keyframes share-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}


.ticket {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--music-teal);
  color: var(--paper-1);
  border-radius: 4px 4px 4px 4px;
  padding: 6px 10px 6px 6px;
  position: relative;
  max-width: 100%;
  border: none;
  text-align: left;
}

.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  background: inherit;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 0 2px 0 0;
}

.ticket__art {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--music-teal-dark);
}

.ticket__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-family: var(--font-mono);
}

.ticket__song {
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.ticket__artist {
  font-size: 0.62rem;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-left: 2px;
  flex-shrink: 0;
}

.eq span {
  width: 2.5px;
  background: var(--paper-1);
  border-radius: 1px;
  height: 4px;
}

.ticket.is-playing .eq span {
  animation: eq-bounce 0.9s ease-in-out infinite;
}
.ticket.is-playing .eq span:nth-child(1) { animation-delay: 0s; }
.ticket.is-playing .eq span:nth-child(2) { animation-delay: 0.15s; }
.ticket.is-playing .eq span:nth-child(3) { animation-delay: 0.3s; }

@keyframes eq-bounce {
  0%, 100% { height: 4px; }
  50% { height: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .note { animation: none; }
  .ticket.is-playing .eq span { animation: none; height: 9px; }
}

.note--shared-highlight {
  box-shadow: var(--paper-shadow), 0 0 0 2px var(--marker-gold);
  animation: pin-in 0.35s ease both, shared-glow 1.8s ease-out 0.35s 1;
}

@keyframes shared-glow {
  0% { box-shadow: var(--paper-shadow), 0 0 0 2px var(--marker-gold), 0 0 22px 4px rgba(227, 168, 59, 0.55); }
  100% { box-shadow: var(--paper-shadow), 0 0 0 2px var(--marker-gold), 0 0 0 0 rgba(227, 168, 59, 0); }
}

.ticket.is-cued {
  animation: ticket-cue 1.1s ease-in-out infinite;
}

@keyframes ticket-cue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227, 168, 59, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(227, 168, 59, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .note--shared-highlight { animation: none; }
  .ticket.is-cued { animation: none; }
}


.site-footer {
  width: 100%;
  text-align: center;
  padding: 32px 24px 48px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #6f6a5c;
}


.composer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 50;
}

.composer-overlay[hidden] { display: none; }

.composer {
  position: relative;
  background: var(--paper-1);
  color: var(--ink);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-note);
  padding: 34px 28px 28px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

.composer__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
  opacity: 0.5;
}
.composer__close:hover { opacity: 1; }

.composer__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 22px;
}

.share-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  z-index: 55;
}

.share-sheet-overlay[hidden] { display: none; }

.share-sheet {
  width: 100%;
  max-width: 400px;
  background: var(--paper-1);
  color: var(--ink);
  border-radius: 20px 20px 12px 12px;
  padding: 18px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -20px 50px -12px rgba(0, 0, 0, 0.55);
}

.share-sheet__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 4px 4px 14px;
}

.share-sheet__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  margin-bottom: 8px;
  border: 1px solid rgba(32, 41, 61, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.share-sheet__option:hover { background: rgba(255, 255, 255, 0.85); }

.share-sheet__option:disabled { cursor: wait; opacity: 0.7; }

.share-sheet__option--secondary {
  background: transparent;
  border-style: dashed;
}

.share-sheet__icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4537e, #e3a83b);
}

.share-sheet__icon svg { width: 16px; height: 16px; }

.share-sheet__icon--facebook { background: #1877f2; }

.share-sheet__option-label { display: inline-flex; flex-direction: column; line-height: 1.2; }

.share-sheet__option-loading {
  display: none;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--music-teal-dark);
}

.share-sheet__option.is-loading .share-sheet__option-loading { display: block; }

.share-sheet__cancel {
  width: 100%;
  padding: 13px 14px;
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  opacity: 0.65;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.share-sheet__cancel:hover { opacity: 1; }

.feedback__intro {
  font-size: 0.85rem;
  color: #47546b;
  margin: -14px 0 20px;
  line-height: 1.4;
}

.field {
  display: block;
  margin-bottom: 18px;
  position: relative;
}

.field__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--music-teal-dark);
  margin-bottom: 8px;
}

.field__optional { text-transform: none; opacity: 0.6; letter-spacing: 0; }

.field input[type="text"],
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fffdf6;
  border: 1.5px solid rgba(32, 41, 61, 0.15);
  border-radius: 6px;
  padding: 11px 13px;
  resize: vertical;
}

.field input[type="text"]:focus,
.field textarea:focus {
  border-color: var(--music-teal);
}

.field__count {
  display: block;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #8b877c;
  margin-top: 4px;
}

.song-search { position: relative; }

.song-results {
  list-style: none;
  margin: 6px 0 0;
  padding: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fffdf6;
  border: 1.5px solid rgba(32, 41, 61, 0.15);
  border-radius: 8px;
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.3);
  max-height: 220px;
  overflow-y: auto;
  z-index: 5;
}

.song-results[hidden] { display: none; }

.song-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 6px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.song-result:hover, .song-result:focus-visible { background: rgba(59, 122, 118, 0.1); }

.song-result img {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--paper-2);
  flex-shrink: 0;
}

.song-result__meta { display: flex; flex-direction: column; min-width: 0; }
.song-result__title { font-size: 0.85rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-result__artist { font-size: 0.75rem; color: #6f6a5c; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.song-picked {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 122, 118, 0.12);
  border-radius: 8px;
  padding: 8px;
}

.song-picked[hidden] { display: none; }

.song-picked__art { width: 38px; height: 38px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.song-picked__meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.song-picked__title { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-picked__artist { font-size: 0.75rem; color: #47546b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.song-picked__remove {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--ink);
  opacity: 0.5;
  flex-shrink: 0;
}
.song-picked__remove:hover { opacity: 1; }

.composer__error {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #a13d2f;
  background: rgba(161, 61, 47, 0.1);
  border-radius: 6px;
  padding: 8px 10px;
  margin: 0 0 16px;
}

.btn-marker--submit { width: 100%; margin-top: 4px; }

.btn-marker--submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none !important;
}


@media (max-width: 640px) {
  .hero { padding: 56px 20px 64px; }
  .wall-section { padding: 40px 18px 72px; }
  .wall { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}

@media (max-width: 420px) {
  .wall { grid-template-columns: 1fr; }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(16px);
  background: var(--marker-gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 24px;
  border-radius: 100px;
  box-shadow: var(--paper-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  max-width: calc(100vw - 48px);
  text-align: center;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}