:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: #101010;
  --surface-raised: #151515;
  --surface-input: #191919;
  --ink: #f5f5f7;
  --ink-soft: #a7a7ad;
  --ink-faint: #68686f;
  --line: #29292d;
  --line-strong: #3a3a40;
  --accent: #f4543d;
  --accent-bright: #ff6d57;
  --accent-soft: rgba(244, 84, 61, 0.14);
  --secondary: #7d42c6;
  --secondary-bright: #a55de4;
  --secondary-soft: rgba(125, 66, 198, 0.16);
  --success: #55b98b;
  --blush: #eeded8;
  --radius: 16px;
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(244, 84, 61, 0.13), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.roll {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 88px 48px 110px;
}

.masthead {
  position: relative;
  padding: 0 4px 32px 66px;
}

.brand-mark {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  image-rendering: pixelated;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.masthead h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.masthead .sub {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.banner {
  margin: 18px 0 0 -62px;
  padding: 12px 14px;
  border: 1px solid rgba(125, 66, 198, 0.5);
  border-radius: 12px;
  background: var(--accent-soft);
  color: #d6bdf0;
  font-size: 12px;
  line-height: 1.5;
}

.ticket {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.ticket:hover { border-color: var(--line-strong); }
.ticket.verify { background: var(--surface-raised); }

.stub-number {
  position: absolute;
  top: 29px;
  right: 28px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-faint);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
}

.ticket h2 {
  margin: 0 0 22px;
  padding-right: 48px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.perforation {
  width: 1px;
  height: 24px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
}

label {
  display: block;
  margin: 16px 0 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

input[type="text"],
input[type="url"],
input[type="number"],
input:not([type]),
select {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--surface-input);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input::placeholder { color: #66666c; }
.mono, input.mono { font-family: 'IBM Plex Mono', monospace; }

input:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

fieldset {
  margin: 22px 0 0;
  padding: 16px 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

legend {
  padding: 0 8px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-input);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.chip:hover { border-color: var(--line-strong); color: var(--ink); }
.chip:has(input:checked) {
  border-color: rgba(165, 93, 228, 0.7);
  background: var(--secondary-soft);
  color: #e0c9f4;
}

.chip input { margin: 0; accent-color: var(--accent); }
.chip.standalone { width: fit-content; margin-top: 18px; }

.row-2 {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 14px;
}

.stamp-btn {
  min-height: 46px;
  margin-top: 22px;
  padding: 11px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--ink);
  color: #0b0b0c;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.12s, background 0.12s, box-shadow 0.12s;
}

.stamp-btn:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.stamp-btn:active { transform: translateY(0); }
.stamp-btn:disabled { cursor: not-allowed; opacity: 0.45; transform: none; }
.stamp-btn.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.stamp-btn.primary:hover { background: var(--accent-bright); }

.status-line {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 1.6;
}

.results-card {
  overflow: hidden;
  border-color: rgba(244, 84, 61, 0.4);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 84, 61, 0.16), transparent 22rem),
    var(--surface);
}

.results-card > .eyebrow { color: var(--accent-bright); }
.results-card h2 { margin-bottom: 6px; font-size: 28px; }

.winner-stub {
  position: relative;
  margin-top: 22px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(125, 66, 198, 0.55);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125, 66, 198, 0.18), rgba(85, 185, 139, 0.06));
}

.winner-name {
  margin: 2px 0;
  padding-right: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.winner-handle {
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}

.stamp-mark {
  position: absolute;
  top: 17px;
  right: 18px;
  padding: 5px 9px;
  border: 1px solid rgba(113, 217, 160, 0.5);
  border-radius: 999px;
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.draw-summary {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

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

.summary-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.summary-stat strong {
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.summary-stat span,
.receipt-list dt,
.receipt-list dd {
  font-size: 11px;
}

.summary-stat span { color: var(--ink-soft); }
.receipt-list { margin: 14px 0 0; }
.receipt-list > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
}
.receipt-list > div:last-child { border-bottom: 0; }
.receipt-list dt { color: var(--ink-faint); }
.receipt-list dd {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: right;
}
.receipt-list a { color: var(--accent-bright); text-decoration: none; }
.receipt-list a:hover { text-decoration: underline; }

.receipt-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.receipt-btn {
  flex: 1;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-input);
  color: var(--ink);
  cursor: pointer;
  font: 700 13px 'Inter', sans-serif;
}
.receipt-btn:hover { border-color: var(--accent-bright); }
.receipt-btn.primary { border-color: var(--accent); background: var(--accent); }
.receipt-btn.primary:hover { background: var(--accent-bright); }

.receipt-preview {
  display: block;
  width: 100%;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #090909;
}

.support-trigger {
  position: fixed;
  z-index: 40;
  top: 24px;
  right: max(28px, calc((100vw - 1500px) / 2 + 28px));
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-raised);
  color: var(--ink);
  cursor: pointer;
  font: 700 13px 'Inter', sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.support-trigger:hover { border-color: var(--accent); color: #fff; }
body.modal-open { overflow: hidden; }
.support-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.support-modal[hidden] { display: none; }
.support-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
  cursor: default;
}
.support-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 30px;
  align-items: center;
  width: min(100%, 680px);
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: var(--surface-raised);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .7);
  animation: modal-in .2s ease-out;
}
.modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-input);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 22px;
}
.support-dialog .tip-copy h2 {
  margin: 0 0 8px;
  font: 600 26px 'Space Grotesk', sans-serif;
}
.support-dialog .tip-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.support-dialog .tip-copy p strong { color: var(--accent-bright); font-family: 'IBM Plex Mono', monospace; }
.support-dialog .tip-copy .tip-intro { margin-bottom: 20px; }
.tip-method {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tip-method h3 {
  margin: 0 0 6px;
  font: 600 16px 'Space Grotesk', sans-serif;
}
.support-dialog .tip-method p { margin-bottom: 12px; font-size: 12px; }
.support-dialog code {
  overflow-wrap: anywhere;
  color: var(--blush);
  font: 11px 'IBM Plex Mono', monospace;
}

.tip-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.tip-card h3 {
  margin: 0 0 7px;
  font: 600 19px 'Space Grotesk', sans-serif;
}
.tip-card p:not(.eyebrow) {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}
.tip-card p strong {
  color: var(--accent-bright);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
}
.tip-card code {
  overflow-wrap: anywhere;
  color: var(--blush);
  font: 11px 'IBM Plex Mono', monospace;
}
.twetch-pay-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: 600 13px 'IBM Plex Mono', monospace;
  text-decoration: none;
}
.twetch-pay-link:hover { background: var(--accent-bright); }
.tip-address-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  padding: 8px 8px 8px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a0a0b;
}
.tip-address-row code { min-width: 0; flex: 1; }
.copy-address-btn {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-input);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
}
.tip-qr {
  display: block;
  width: 156px;
  height: 156px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
}
.tip-qr-wrap {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.tip-qr-wrap span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tip-qr-wrap small { color: var(--ink-faint); font-size: 10px; line-height: 1.4; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.copy-status {
  display: inline-block;
  margin-left: 8px;
  color: var(--success);
  font-size: 11px;
}

.draw-theater {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  padding: 24px;
  overflow: hidden;
  background: rgba(3, 3, 4, 0.92);
  backdrop-filter: blur(16px);
}

.draw-theater[hidden] { display: none; }
.theater-glow {
  position: absolute;
  width: min(80vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 66, 198, 0.25), transparent 64%);
  animation: glow-pulse 1.8s ease-in-out infinite alternate;
}

.theater-panel {
  position: relative;
  width: min(100%, 680px);
  min-width: 0;
  max-width: 100%;
  padding: clamp(32px, 7vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(244, 84, 61, 0.5);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(24, 22, 42, 0.96), rgba(10, 10, 12, 0.98));
  text-align: center;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65), inset 0 1px rgba(255, 255, 255, 0.06);
}

.shuffle-name {
  min-height: 1.2em;
  margin: 30px 0;
  overflow: hidden;
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 8vw, 58px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shuffle-name.tick { animation: name-tick 0.16s ease-out; }
.shuffle-name.is-winner {
  color: #fff;
  text-shadow: 0 0 28px rgba(244, 84, 61, 0.8);
  animation: winner-pop 0.65s cubic-bezier(.2, .9, .2, 1.25);
}

.shuffle-name.winner-list {
  display: flex;
  min-height: 1.2em;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  overflow: visible;
  font-size: clamp(18px, 4vw, 28px);
  letter-spacing: -0.025em;
  white-space: normal;
}

.shuffle-name.winner-list span {
  padding: 9px 14px;
  border: 1px solid rgba(165, 93, 228, 0.48);
  border-radius: 999px;
  background: rgba(125, 66, 198, 0.16);
}

.shuffle-name.winner-list b {
  color: var(--success);
  font-size: 0.7em;
}

.shuffle-name.winner-step span:last-child {
  animation: winner-chip 0.5s cubic-bezier(.2, .9, .2, 1.25);
}

.shuffle-track {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}
.shuffle-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary-bright), var(--accent), var(--success));
  box-shadow: 0 0 16px rgba(244, 84, 61, 0.65);
  transition: width 0.12s linear;
}
.theater-status {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.confetti { position: absolute; inset: 0; pointer-events: none; }
.confetti i {
  --color: var(--accent-bright);
  position: absolute;
  top: 45%;
  left: calc(var(--x) * 1%);
  width: 7px;
  height: 13px;
  border-radius: 2px;
  background: var(--color);
  opacity: 0;
  animation: confetti-fall 1.4s var(--d) cubic-bezier(.2, .75, .35, 1) forwards;
}
.confetti i:nth-child(3n) { --color: var(--success); }
.confetti i:nth-child(3n + 1) { --color: #fff; }

@keyframes name-tick {
  from { opacity: 0.25; transform: translateY(9px) scale(0.98); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes glow-pulse {
  from { transform: scale(0.92); opacity: 0.6; }
  to { transform: scale(1.08); opacity: 1; }
}
@keyframes winner-pop {
  0% { opacity: 0; transform: scale(0.7); filter: blur(8px); }
  70% { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); filter: none; }
}
@keyframes winner-chip {
  from { opacity: 0; transform: scale(0.6) translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes confetti-fall {
  0% { opacity: 1; transform: translateY(-10px) rotate(0); }
  100% { opacity: 0; transform: translateY(260px) rotate(540deg); }
}

@media (min-width: 700px) {
  .roll { padding-right: 24px; padding-left: 24px; }
  .masthead { padding: 0 8px 42px 82px; }
  .brand-mark { width: 58px; height: 58px; border-radius: 17px; }
  .masthead h1 { font-size: 68px; }
  .masthead .sub { margin-top: 15px; font-size: 26px; }
  .eyebrow { font-size: 18px; }
  .banner { margin-left: -74px; padding: 20px 22px; font-size: 20px; }

  .ticket { padding: 42px 44px 44px; border-radius: 22px; }
  .ticket h2 { margin-bottom: 35px; font-size: 37px; }
  .stub-number { top: 42px; right: 44px; width: 42px; height: 42px; font-size: 15px; }

  label { margin-top: 25px; margin-bottom: 12px; font-size: 22px; }
  input[type="text"],
  input[type="url"],
  input[type="number"],
  input:not([type]),
  select { min-height: 73px; padding: 18px 21px; border-radius: 13px; font-size: 23px; }
  fieldset { margin-top: 33px; padding: 26px 24px 29px; border-radius: 16px; }
  legend { font-size: 17px; }
  .chip { padding: 15px 21px; font-size: 21px; }
  .row-2 { gap: 20px; }
  .stamp-btn { min-height: 70px; padding: 18px 32px; font-size: 22px; }
  .status-line { font-size: 18px; }
  .perforation { height: 30px; }

  .results-card h2 { font-size: 46px; }
  .winner-stub { padding: 28px; }
  .winner-name { font-size: 34px; }
  .winner-handle { font-size: 20px; }
  .summary-stat { padding: 22px; }
  .summary-stat strong { font-size: 35px; }
  .summary-stat span, .receipt-list dt, .receipt-list dd { font-size: 19px; }
  .receipt-btn { min-height: 59px; font-size: 19px; }

  .support-trigger {
    top: 30px;
    right: max(34px, calc((100vw - 1500px) / 2 + 34px));
    min-height: 50px;
    padding: 12px 22px;
    font-size: 20px;
  }

  .support-dialog {
    grid-template-columns: minmax(0, 1fr) 264px;
    gap: 46px;
    width: min(100%, 990px);
    padding: 53px;
    border-radius: 24px;
  }
  .support-dialog .tip-copy h2 { margin-bottom: 13px; font-size: 40px; }
  .support-dialog .tip-copy p { margin-bottom: 26px; font-size: 21px; }
  .twetch-pay-link { min-height: 57px; padding: 13px 23px; font-size: 19px; }
  .tip-address-row { margin-top: 20px; padding: 11px 10px 11px 14px; }
  .support-dialog code { font-size: 15px; }
  .copy-address-btn { padding: 11px 15px; font-size: 15px; }
  .copy-status { font-size: 15px; }
  .support-dialog .tip-qr { width: 264px; height: 264px; padding: 13px; }
  .modal-close { width: 46px; height: 46px; font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .theater-glow, .shuffle-name, .confetti i { animation: none !important; }
  .shuffle-track span { transition: none; }
}

@media (max-width: 560px) {
  .roll {
    width: 100%;
    padding: 42px max(14px, env(safe-area-inset-right)) 72px max(14px, env(safe-area-inset-left));
  }
  .masthead { padding-left: 58px; }
  .brand-mark { width: 42px; height: 42px; }
  .banner { margin-left: -58px; }
  .ticket { padding: 22px 18px; }
  .stub-number { top: 23px; right: 18px; }
  .row-2 { grid-template-columns: 1fr; gap: 0; }
  .stamp-btn { width: 100%; }
  input[type="text"],
  input[type="url"],
  input[type="number"],
  input:not([type]),
  select {
    font-size: 16px;
  }
  .winner-name { padding-right: 0; padding-top: 32px; }
  .stamp-mark { left: 18px; right: auto; }
  .receipt-list > div { grid-template-columns: 88px minmax(0, 1fr); }
  .receipt-actions { flex-direction: column; }
  .tip-card { grid-template-columns: 1fr; }
  .tip-qr { grid-row: 1; justify-self: center; }
  .support-trigger { top: 14px; right: 14px; }
  .support-dialog { grid-template-columns: 1fr; padding: 28px 20px 22px; }
  .support-dialog .tip-qr { grid-row: 1; width: 138px; height: 138px; }
  .draw-theater {
    padding: max(16px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  }
  .theater-panel {
    width: 100%;
    padding: 32px 18px;
    border-radius: 20px;
  }
  .shuffle-name {
    max-width: 100%;
    margin: 24px 0;
    font-size: clamp(28px, 10vw, 44px);
  }
}
