/* =========================================================
   Arrows Winner — soft clay / pastel arrow-stage landing
   Differentiated layout: bottom HUD dock + play-card hero +
   curved level path (not classic split / grid templates)
   ========================================================= */

:root {
  --aw-pink: #ffb8d4;
  --aw-pink-deep: #ff8fbc;
  --aw-pink-soft: #ffe4ef;
  --aw-blush: #fff5f9;
  --aw-sky: #7ec8ff;
  --aw-mint: #5eead4;
  --aw-lav: #c4b5fd;
  --aw-sun: #ffe566;
  --aw-coral: #ff5a7a;
  --aw-ink: #2a1845;
  --aw-muted: #6b4f7a;
  --aw-white: #ffffff;
  --aw-card: #fffafc;
  --aw-stroke: #5b2a8a;
  --aw-shadow: 0 12px 28px rgba(180, 70, 120, 0.18);
  --aw-radius: 28px;
  --aw-font-display: "Fredoka", system-ui, sans-serif;
  --aw-font-body: "Nunito", system-ui, sans-serif;
  --aw-hud-h: 76px;
  --aw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.aw-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--aw-font-body);
  color: var(--aw-ink);
  background: var(--aw-pink-soft);
  line-height: 1.55;
  overflow-x: hidden;
  padding-bottom: calc(var(--aw-hud-h) + 28px);
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--aw-font-display);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.aw-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--aw-white);
  color: var(--aw-ink);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.aw-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Stage backdrop ---------- */
.aw-stage {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, #ffc8de 0%, #ffe8f2 42%, #fff5f9 100%);
  overflow: hidden;
}

.aw-stage__sunburst {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 140vmax;
  height: 140vmax;
  transform: translateX(-50%);
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.22) 0deg 8deg,
    rgba(255, 180, 210, 0.08) 8deg 16deg
  );
  opacity: 0.55;
  mask-image: radial-gradient(circle, #000 0%, transparent 68%);
}

.aw-stage__ribbons {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.aw-ribbon--a {
  stroke: #7ee8d8;
}
.aw-ribbon--b {
  stroke: #c4b5fd;
}
.aw-ribbon--c {
  stroke: #ffe566;
}

.aw-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--aw-sun);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: aw-twinkle 2.8s ease-in-out infinite;
}

.aw-spark--1 { top: 18%; left: 12%; animation-delay: 0s; }
.aw-spark--2 { top: 28%; right: 14%; animation-delay: 0.7s; }
.aw-spark--3 { top: 62%; left: 8%; animation-delay: 1.2s; }
.aw-spark--4 { top: 72%; right: 10%; animation-delay: 1.8s; }

@keyframes aw-twinkle {
  0%, 100% { transform: scale(0.7) rotate(0deg); opacity: 0.45; }
  50% { transform: scale(1.15) rotate(18deg); opacity: 1; }
}

/* ---------- Top brand strip ---------- */
.aw-top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  margin: 0.75rem 0.85rem 0;
  background: rgba(255, 250, 252, 0.82);
  backdrop-filter: blur(12px);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--aw-shadow);
  transition: box-shadow 0.25s var(--aw-ease), background 0.25s ease;
}

.aw-top.is-scrolled {
  background: rgba(255, 250, 252, 0.95);
  box-shadow: 0 10px 24px rgba(180, 70, 120, 0.22);
}

.aw-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--aw-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--aw-ink);
}

.aw-brand img {
  border-radius: 12px;
  box-shadow: 0 4px 0 rgba(91, 42, 138, 0.12);
}

.aw-top__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7a98, var(--aw-coral));
  color: var(--aw-white);
  font-family: var(--aw-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 0 #c93a58, 0 8px 16px rgba(255, 90, 122, 0.35);
  transition: transform 0.2s var(--aw-ease), filter 0.2s ease;
}

.aw-top__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.aw-top__cta:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #c93a58;
}

.aw-top__cta svg {
  width: 18px;
  height: 18px;
}

/* ---------- Hero / play card ---------- */
.aw-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5rem 1rem 2.5rem;
}

.aw-playcard {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: 2rem 1.25rem 1.75rem;
  background: var(--aw-card);
  border-radius: 40px;
  border: 4px solid #fff;
  box-shadow: var(--aw-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.aw-playcard__lives {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  display: flex;
  gap: 0.25rem;
}

.aw-playcard__lives svg {
  width: 22px;
  height: 22px;
  fill: #ff5a7a;
  stroke: #ff5a7a;
}

.aw-playcard__lives .is-empty {
  fill: #f3d0dc;
  stroke: #e8a8bc;
}

.aw-playcard__frame {
  margin: 0.5rem auto 0;
  width: min(72vw, 260px);
  border-radius: 28px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 3px rgba(126, 200, 255, 0.55),
    0 16px 32px rgba(120, 50, 100, 0.18);
  background: #fff;
}

.aw-playcard__shot {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.aw-playcard__copy {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto;
}

.aw-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--aw-pink-soft);
  color: var(--aw-muted);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aw-playcard__copy h1 {
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  margin-bottom: 0.85rem;
  color: var(--aw-ink);
}

.aw-playcard__copy h1 span {
  background: linear-gradient(90deg, #ff6b9a, #7c6cff, #3ecfcf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aw-lead {
  color: var(--aw-muted);
  font-size: 1.02rem;
  margin-bottom: 1.35rem;
}

.aw-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.aw-hero__cta--center {
  justify-content: center;
  width: 100%;
}

.aw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.15rem;
  border-radius: 18px;
  transition: transform 0.2s var(--aw-ease), box-shadow 0.2s ease, filter 0.2s ease;
}

.aw-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.aw-btn:active {
  transform: translateY(1px);
}

.aw-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.aw-btn--store {
  background: #1c1c1e;
  color: #fff;
  text-align: left;
  box-shadow: 0 6px 0 #000, 0 10px 20px rgba(0, 0, 0, 0.18);
  min-width: 168px;
}

.aw-btn--store small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.8;
  font-family: var(--aw-font-body);
  font-weight: 600;
}

.aw-btn--store span {
  font-family: var(--aw-font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.15;
}

.aw-btn--play {
  background: linear-gradient(180deg, #5ad0ff, #2a9adf);
  box-shadow: 0 6px 0 #1a6fa8, 0 10px 20px rgba(42, 154, 223, 0.28);
}

.aw-btn--solid {
  background: linear-gradient(180deg, #ff7a98, var(--aw-coral));
  color: #fff;
  font-family: var(--aw-font-display);
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 0 #c93a58;
}

@media (min-width: 860px) {
  .aw-playcard {
    grid-template-columns: 280px 1fr;
    align-items: center;
    padding: 2.25rem 2.25rem 2.25rem 1.75rem;
    gap: 2rem;
  }

  .aw-playcard__frame {
    margin: 0;
    width: 260px;
  }

  .aw-playcard__copy {
    text-align: left;
    max-width: none;
  }

  .aw-hero__cta {
    justify-content: flex-start;
  }

  .aw-hero__cta--center {
    justify-content: center;
  }

  .aw-playcard__lives {
    right: auto;
    left: 1.4rem;
  }
}

/* ---------- Section heads ---------- */
.aw-section-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.aw-section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: var(--aw-ink);
}

.aw-section-head p {
  color: var(--aw-muted);
  font-size: 1.02rem;
}

/* ---------- Curved how-to path ---------- */
.aw-path {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1rem 3rem;
}

.aw-path__track {
  position: relative;
  padding: 1rem 0 0;
}

.aw-path__curve {
  display: none;
  width: 100%;
  height: 160px;
  margin-bottom: -4.5rem;
  color: var(--aw-pink-deep);
}

.aw-path__curve path {
  stroke: currentColor;
  opacity: 0.55;
}

.aw-path__stops {
  display: grid;
  gap: 1.25rem;
}

.aw-stop {
  position: relative;
  text-align: center;
  background: var(--aw-card);
  border-radius: var(--aw-radius);
  padding: 1.5rem 1.2rem 1.35rem;
  border: 3px solid #fff;
  box-shadow: var(--aw-shadow);
}

.aw-stop__num {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-family: var(--aw-font-display);
  font-size: 0.85rem;
  color: var(--aw-pink-deep);
  font-weight: 700;
}

.aw-stop__bubble {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 3px solid var(--aw-sky);
  box-shadow: 0 6px 0 rgba(126, 200, 255, 0.35);
  color: #2a7ab8;
}

.aw-stop__bubble--mint {
  border-color: var(--aw-mint);
  box-shadow: 0 6px 0 rgba(94, 234, 212, 0.4);
  color: #0f766e;
}

.aw-stop__bubble--sun {
  border-color: #f5c542;
  box-shadow: 0 6px 0 rgba(245, 197, 66, 0.4);
  color: #a16207;
}

.aw-stop__bubble svg {
  width: 28px;
  height: 28px;
}

.aw-stop h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.aw-stop p {
  color: var(--aw-muted);
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .aw-path__curve {
    display: block;
  }

  .aw-path__stops {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .aw-stop:nth-child(2) {
    transform: translateY(-28px);
  }

  .aw-stop:nth-child(3) {
    transform: translateY(12px);
  }
}

/* ---------- Feature dock ---------- */
.aw-feats {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.5rem 1rem 3rem;
}

.aw-dock {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.aw-dock__item {
  background: rgba(255, 250, 252, 0.92);
  border-radius: 32px;
  padding: 1.4rem 1.2rem 1.35rem;
  text-align: center;
  border: 3px solid #fff;
  box-shadow: var(--aw-shadow);
  transition: transform 0.25s var(--aw-ease);
}

.aw-dock__item:hover {
  transform: translateY(-4px);
}

.aw-dock__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.95rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 3px solid currentColor;
  position: relative;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.06);
}

.aw-dock__icon::after {
  content: "+";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--aw-sun);
  color: #7a4e00;
  font-family: var(--aw-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.aw-dock__icon svg {
  width: 30px;
  height: 30px;
}

.aw-dock__icon--sky { color: #3b9fd9; }
.aw-dock__icon--rose { color: #e85a8a; }
.aw-dock__icon--lime { color: #2db88a; }
.aw-dock__icon--lav { color: #8b6cf0; }

.aw-dock__item h3 {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

.aw-dock__item p {
  color: var(--aw-muted);
  font-size: 0.94rem;
}

@media (min-width: 700px) {
  .aw-dock {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .aw-dock {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Screenshots seamless marquee ---------- */
.aw-shots {
  padding: 0.5rem 0 3rem;
  overflow: hidden;
}

.aw-shots__viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.aw-shots__rail {
  overflow: hidden;
  padding: 0.5rem 0 1.25rem;
}

.aw-shots__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: aw-marquee 36s linear infinite;
}

.aw-shots__group {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
  flex-shrink: 0;
}

.aw-shots__rail.is-paused .aw-shots__track,
.aw-shots__rail:hover .aw-shots__track,
.aw-shots__rail:focus-within .aw-shots__track {
  animation-play-state: paused;
}

@keyframes aw-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.aw-shot {
  flex: 0 0 auto;
  width: min(62vw, 220px);
  border-radius: 28px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--aw-shadow);
  background: #fff;
}

.aw-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  pointer-events: none;
}

/* ---------- Download ---------- */
.aw-dl {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.aw-dl__card {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  background: linear-gradient(160deg, #fff 0%, #ffe8f2 100%);
  border-radius: 40px;
  border: 4px solid #fff;
  box-shadow: var(--aw-shadow);
}

.aw-dl__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffe566, #ffc107);
  color: #7a4e00;
  box-shadow: 0 6px 0 #d4a106;
}

.aw-dl__badge svg {
  width: 30px;
  height: 30px;
}

.aw-dl__card h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.55rem;
}

.aw-dl__card > p {
  color: var(--aw-muted);
  margin-bottom: 1.4rem;
}

/* ---------- Footer ---------- */
.aw-foot {
  padding: 2rem 1.25rem 1.5rem;
  background: rgba(255, 250, 252, 0.75);
  border-top: 3px solid rgba(255, 255, 255, 0.9);
}

.aw-foot__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.aw-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.aw-foot__links a {
  color: var(--aw-coral);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.aw-foot__links a:hover {
  border-color: var(--aw-coral);
  color: #d63d5f;
}

.aw-foot__copy {
  color: var(--aw-muted);
  font-size: 0.88rem;
}

/* ---------- Bottom HUD dock ---------- */
.aw-hud {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem 0.55rem;
  background: rgba(255, 250, 252, 0.94);
  backdrop-filter: blur(14px);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(160, 60, 110, 0.28);
  width: min(420px, calc(100vw - 1.5rem));
  justify-content: space-between;
}

.aw-hud__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem 0.2rem;
  border-radius: 16px;
  color: var(--aw-muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s var(--aw-ease);
}

.aw-hud__btn svg {
  width: 20px;
  height: 20px;
}

.aw-hud__btn:hover,
.aw-hud__btn.is-active {
  color: var(--aw-coral);
  background: var(--aw-pink-soft);
}

.aw-hud__btn--fab {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  margin: 0 0.15rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff7a98, var(--aw-coral));
  color: #fff !important;
  box-shadow: 0 5px 0 #c93a58, 0 10px 18px rgba(255, 90, 122, 0.35);
  transform: translateY(-14px);
  justify-content: center;
  padding: 0;
}

.aw-hud__btn--fab span {
  display: none;
}

.aw-hud__btn--fab svg {
  width: 24px;
  height: 24px;
}

.aw-hud__btn--fab:hover {
  background: linear-gradient(180deg, #ff8eaa, #ff6b88);
  color: #fff !important;
  transform: translateY(-16px);
}

/* ---------- Modal ---------- */
.aw-modal[hidden] {
  display: none;
}

.aw-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.aw-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 24, 69, 0.45);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.aw-modal__panel {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  background: var(--aw-card);
  border-radius: 32px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border: 4px solid #fff;
  box-shadow: 0 20px 48px rgba(80, 30, 70, 0.28);
  animation: aw-pop 0.28s var(--aw-ease);
}

@keyframes aw-pop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.aw-modal__x {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--aw-pink-soft);
  color: var(--aw-ink);
  transition: background 0.2s ease;
}

.aw-modal__x:hover {
  background: var(--aw-pink);
}

.aw-modal__x svg {
  width: 18px;
  height: 18px;
}

.aw-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #c8f0ff, #7ec8ff);
  color: #1a5f8a;
}

.aw-modal__icon svg {
  width: 30px;
  height: 30px;
}

.aw-modal__panel h2 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.aw-modal__panel p {
  color: var(--aw-muted);
  margin-bottom: 1.25rem;
}

body.aw-modal-open {
  overflow: hidden;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .aw-hero__logo,
  .aw-spark {
    animation: none !important;
  }

  .aw-shots__track {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    justify-content: center;
    padding: 0 1rem;
  }

  .aw-shots__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    gap: 1rem;
  }

  .aw-shots__viewport {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .aw-shots__group--clone {
    display: none !important;
  }

  .aw-btn,
  .aw-dock__item,
  .aw-top__cta,
  .aw-hud__btn {
    transition: none !important;
  }

  .aw-modal__panel {
    animation: none;
  }
}

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--aw-sky);
  outline-offset: 3px;
}
