/* Banekongen app-lag — tokens fra Champion Night Court (champion-theme.css) */
:root {
  --court-cream: var(--bk-court-cream);
  --night-court: var(--bk-night-court);
  --tin-red: var(--bk-tin-red);
  --ball-yellow: var(--bk-ball-yellow);
  --podium-gold: var(--bk-podium-gold);
  --ink: var(--bk-fg);
  --ink-muted: var(--bk-ink-muted);
  --accent: var(--bk-accent);
  --font-display: var(--bk-font-display);
  --field-bg: var(--bk-field-bg);
  --field-border: var(--bk-field-border);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

/* Atmosfære (Night Court + grid + spotlight) kommer fra body.bk-court i champion-theme.css */

.shell {
  min-height: 100dvh;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 0.75rem;
}

/* Plads til toast, så fejl/Henter… ikke dækker primær-knapper nederst */
.shell:has(.status-toast:not([hidden])) {
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

.view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.view[hidden] {
  display: none !important;
}

/* Systembeskeder: toast/snackbar nederst — ikke i headeren */
.status.status-toast {
  position: fixed;
  left: 50%;
  bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  width: min(22.5rem, calc(100vw - 1.75rem));
  margin: 0;
  padding: 0.85rem 1.15rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(42, 54, 80, 0.95);
  background: rgba(12, 18, 32, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(201, 162, 39, 0.08);
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  text-align: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.status[hidden] {
  display: none !important;
}

.status-toast.status-toast--enter {
  animation: toast-slide-in 0.38s var(--bk-ease-settle, cubic-bezier(0.22, 1, 0.36, 1)) both;
}

.shell[data-state="ok"] .status {
  color: var(--podium-gold);
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.48),
    0 0 20px rgba(201, 162, 39, 0.12);
}

.shell[data-state="fejl"] .status {
  color: var(--court-cream);
  font-weight: 600;
  border-color: rgba(154, 59, 59, 0.75);
  background: rgba(42, 14, 16, 0.96);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(154, 59, 59, 0.25);
}

.shell[data-state="tom"] .status,
.shell[data-state="indlaeser"] .status {
  color: var(--ink-muted);
}

.maskot {
  width: min(46vw, 11rem);
  height: auto;
  margin: 1.25rem 0 0.5rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  animation: settle 0.7s ease-out both;
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 12vw, 3.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--podium-gold);
  line-height: 1;
  animation: settle 0.7s ease-out 0.08s both;
}

.tagline {
  margin: 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ball-yellow);
  animation: settle 0.7s ease-out 0.16s both;
}

.empty {
  margin: 1.5rem 0 0;
  max-width: 22rem;
  color: var(--ink-muted);
  line-height: 1.45;
  animation: settle 0.7s ease-out 0.24s both;
}

.empty-hero {
  margin-top: 2rem;
  font-size: 1.15rem;
  color: var(--court-cream);
}

.links {
  margin: 1.25rem 0 0;
}

.links-små {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.95rem;
}

.links-små .linkish {
  font-size: 0.95rem;
}

.links-sep {
  color: var(--ink-muted);
  user-select: none;
}

.form-login {
  margin-top: 0.25rem;
}

.holdliste {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}

.holdliste-item {
  appearance: none;
  width: 100%;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--field-border);
  border-radius: 0.35rem;
  background: var(--field-bg);
  color: var(--court-cream);
  font: inherit;
  font-size: 1.05rem;
  cursor: pointer;
  text-align: left;
}

.holdliste-item:hover,
.holdliste-item:focus-visible {
  border-color: rgba(201, 162, 39, 0.55);
  outline: 2px solid var(--podium-gold);
  outline-offset: 1px;
}

.holdliste-navn {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--podium-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.holdliste-prik {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--tin-red);
  box-shadow: 0 0 0 2px rgba(154, 59, 59, 0.28);
}

.holdliste-maerke {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.linkish {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ball-yellow);
  font: inherit;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
  padding: 0.5rem;
}

.screen-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 2.75rem);
  letter-spacing: 0.04em;
  color: var(--podium-gold);
  line-height: 1;
}

.screen-lead {
  margin: 0;
  color: var(--ink-muted);
  font-style: italic;
}

.form {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.75rem;
  text-align: left;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
  min-width: 0;
  max-width: 100%;
}

.field input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 3rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--field-border);
  border-radius: 0.35rem;
  background: var(--field-bg);
  color: var(--court-cream);
  font: inherit;
  font-size: 1.05rem;
}

/* Native date-felter har stor intrinsisk min-bredde på mobil — hold dem inden for viewport */
.field input[type="date"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.field input:focus {
  outline: 2px solid var(--podium-gold);
  outline-offset: 1px;
}

.primary {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  min-height: 3.25rem;
  width: 100%;
  padding: 0.65rem 1.25rem;
  border: 0;
  border-radius: var(--bk-radius, 0.35rem);
  background: var(--ball-yellow);
  color: var(--night-court);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.primary:hover:not(:disabled) {
  filter: brightness(1.05);
}

.primary:active:not(:disabled) {
  transform: translateY(1px);
}

.primary:disabled {
  opacity: 0.55;
  cursor: wait;
}

.primary:focus-visible {
  outline: 2px solid var(--podium-gold);
  outline-offset: 2px;
}

.forside-top {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  padding-bottom: 0.35rem;
  /* Ingen tin-rød kant her — guldlinjen under .hold-navn er den ene accent */
}

.hold-navn {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 0.15rem 2.85rem 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 13vw, 3.55rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--podium-gold);
  line-height: 1.02;
  text-align: center;
  overflow-wrap: anywhere;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 0 28px rgba(201, 162, 39, 0.22);
}

.hold-navn::after {
  content: "";
  display: block;
  width: min(3.25rem, 28%);
  height: 2px;
  margin: 0.4rem auto 0;
  transform-origin: center;
  animation: bk-gold-line 0.55s var(--bk-ease-settle, cubic-bezier(0.22, 1, 0.36, 1)) 0.2s both;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--podium-gold) 35%,
    var(--ball-yellow) 50%,
    var(--podium-gold) 65%,
    transparent 100%
  );
}

.hold-navn-btn {
  appearance: none;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.hold-navn-btn:disabled {
  cursor: default;
  opacity: 0.95;
}

.hold-navn-btn:not(:disabled):focus-visible {
  outline: 2px solid var(--podium-gold);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.kebab-wrap {
  position: absolute;
  top: 0;
  right: 0;
  flex-shrink: 0;
}

.kebab-wrap[hidden] {
  display: none;
}

.kebab-btn {
  appearance: none;
  position: relative;
  border: 0;
  background: transparent;
  color: var(--court-cream);
  font-size: 1.75rem;
  line-height: 1;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 0.35rem;
}

.kebab-btn:focus-visible {
  outline: 2px solid var(--podium-gold);
  outline-offset: 2px;
}

.kebab-prik {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--tin-red);
  box-shadow: 0 0 0 2px rgba(154, 59, 59, 0.28);
  pointer-events: none;
}

.kebab-prik[hidden] {
  display: none;
}

.traener-banner {
  appearance: none;
  display: block;
  width: 100%;
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 0.55rem;
  background: rgba(201, 162, 39, 0.12);
  color: var(--podium-gold);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}

.traener-banner[hidden] {
  display: none;
}

.traener-banner:hover,
.traener-banner:focus-visible {
  background: rgba(201, 162, 39, 0.2);
  outline: 2px solid var(--ball-yellow);
  outline-offset: 2px;
}

.kebab-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin: 0.25rem 0 0;
  padding: 0.35rem 0;
  list-style: none;
  min-width: 11rem;
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 0.35rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 10;
  text-align: left;
}

.kebab-menu[hidden] {
  display: none !important;
}

.kebab-menu button {
  appearance: none;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--court-cream);
  font: inherit;
  font-size: 1rem;
  text-align: left;
  padding: 0.75rem 1rem;
  cursor: pointer;
  min-height: 2.75rem;
}

.kebab-menu button:hover,
.kebab-menu button:focus-visible {
  background: rgba(201, 162, 39, 0.12);
  outline: none;
}

.view-forside {
  align-items: stretch;
}

.forside-spil-links {
  margin-top: 1.25rem;
  text-align: center;
}

.forside-spil-links[hidden] {
  display: none;
}

.forside-logud {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.forside-logud .linkish {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-decoration-color: transparent;
}

.forside-logud .linkish:hover,
.forside-logud .linkish:focus-visible {
  color: var(--court-cream);
  text-decoration-color: currentColor;
}

.podie {
  /* Ankerpunkter: frontkant af hvert trins topflade i podie-fotoet (perspektiv) */
  --podie-1-x: 50.5%;
  --podie-1-y: 43.5%;
  --podie-2-x: 28.5%;
  --podie-2-y: 49%;
  --podie-3-x: 72%;
  --podie-3-y: 53.5%;

  position: relative;
  width: 100%;
  max-width: 22rem;
  margin: 0.75rem auto 0;
  aspect-ratio: 912 / 1175;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #070b14;
}

.podie-foto {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  user-select: none;
  pointer-events: none;
}

.podie-trin {
  position: absolute;
  left: var(--podie-trin-x);
  top: var(--podie-trin-y);
  transform: translate(-50%, -100%);
  width: 32%;
  max-width: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
}

.podie-trin-1 {
  --podie-trin-x: var(--podie-1-x);
  --podie-trin-y: var(--podie-1-y);
  width: 34%;
  max-width: 7rem;
}

.podie-trin-2 {
  --podie-trin-x: var(--podie-2-x);
  --podie-trin-y: var(--podie-2-y);
}

.podie-trin-3 {
  --podie-trin-x: var(--podie-3-x);
  --podie-trin-y: var(--podie-3-y);
}

.podie-navne {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-height: 0;
  width: 100%;
  /* Lidt overlap så avataren visuelt står på trinets topkant */
  margin-bottom: -0.15rem;
  pointer-events: none;
}

.podie-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  width: 100%;
}

.podie-navn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--court-cream);
  text-align: center;
  line-height: 1.15;
  word-break: break-word;
  max-width: 100%;
  text-shadow:
    0 1px 2px rgba(7, 11, 20, 0.95),
    0 0 8px rgba(7, 11, 20, 0.85);
}

.podie-trin-1 .podie-navn {
  font-size: 0.9rem;
}

.avatar-cirkel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, #243556 0%, #1a2233 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  flex-shrink: 0;
}

.avatar-cirkel--podie {
  width: 2.35rem;
  height: 2.35rem;
  box-shadow:
    0 2px 6px rgba(7, 11, 20, 0.65),
    0 0 0 1px rgba(201, 162, 39, 0.2);
}

.podie-trin-1 .avatar-cirkel--podie {
  width: 2.65rem;
  height: 2.65rem;
}

.avatar-cirkel--oevrige {
  width: 1.75rem;
  height: 1.75rem;
}

.avatar-cirkel--stor {
  width: 6.5rem;
  height: 6.5rem;
  border-width: 2px;
  border-color: rgba(201, 162, 39, 0.55);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-initial {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  color: var(--podium-gold);
  line-height: 1;
  font-size: 1.1em;
}

.avatar-cirkel--stor .avatar-initial {
  font-size: 2.4rem;
}

.avatar-preview-wrap {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.25rem;
}

.oevrige-række {
  display: grid;
  grid-template-columns: 2rem 1.75rem 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--court-cream);
  font-size: 1rem;
}

.podie[data-tom="true"] .podie-navne {
  visibility: hidden;
}

.oevrige {
  width: 100%;
  max-width: 22rem;
  align-self: center;
  margin-top: 1.5rem;
}

.oevrige-titel {
  margin: 0 0 0.65rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--ink-muted);
  text-align: center;
}

.oevrige-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.oevrige-placering {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-align: right;
}

.oevrige-placering[data-tom="true"] {
  visibility: hidden;
}

.oevrige-navn {
  min-width: 0;
  word-break: break-word;
}

.oevrige-sejre {
  color: var(--ink-muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.view-forside .empty {
  margin: 1.25rem 0 0;
  text-align: center;
  align-self: center;
}

#btn-registrer-vinder {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 22rem;
  align-self: center;
}

#felt-vinder-bruger,
#felt-ret-vinder-bruger {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  font: inherit;
  font-size: 1.05rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 0.35rem;
}

.holdkode-vis {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  width: 100%;
  text-align: left;
  color: var(--court-cream);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 0.35rem;
  font-size: 1.05rem;
}

.hold-hjaelp {
  margin: 0.35rem 0 0;
  width: 100%;
  text-align: left;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

#view-hold .holdkode-vis {
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.spillerliste {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  width: 100%;
  text-align: left;
}

.spillere-gruppe {
  width: 100%;
  margin-top: 1.25rem;
}

.spillere-gruppe-titel {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.spillerliste li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--field-border);
  font-size: 1.05rem;
}

.spillerliste .spiller-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.spillerliste .spiller-rolle {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.spillerliste .spiller-handling {
  font: inherit;
  font-size: 0.9rem;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 0.35rem;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.spillerliste .spiller-handling:disabled {
  opacity: 0.55;
  cursor: wait;
}

.godkend-dato {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.traening-status {
  font-size: 0.85rem;
  color: var(--ink-muted);
  white-space: nowrap;
}

.traening-status[data-status="godkendt"] {
  color: var(--accent);
}

.traening-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.traening-info .traening-navn {
  font-size: 1.05rem;
}

.seneste-traeninger {
  margin-top: 1.5rem;
  text-align: left;
}

.seneste-titel {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.seneste-liste {
  list-style: none;
  margin: 0;
  padding: 0;
}

.seneste-liste li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--field-border);
  font-size: 0.95rem;
}

.seneste-liste .seneste-dato {
  color: var(--ink-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

@keyframes settle {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* T23 — install-info-boks øverst (mobil browser, ikke standalone) */
.a2hs-guide {
  order: -1;
  width: 100%;
  margin: 0 0 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--field-border);
  border-radius: 0.55rem;
  background: var(--field-bg);
  color: var(--court-cream);
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.a2hs-guide[hidden] {
  display: none !important;
}

.a2hs-guide-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.35rem;
}

.a2hs-guide-title {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--ball-yellow);
  line-height: 1.2;
}

.a2hs-guide-luk {
  appearance: none;
  flex-shrink: 0;
  margin: 0;
  padding: 0.45rem 0.75rem;
  min-height: 2.75rem;
  min-width: 2.75rem;
  border: 1px solid var(--field-border);
  border-radius: 0.4rem;
  background: transparent;
  color: var(--court-cream);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
}

.a2hs-guide-luk:hover,
.a2hs-guide-luk:focus-visible {
  background: rgba(201, 162, 39, 0.12);
  outline: 2px solid var(--ball-yellow);
  outline-offset: 2px;
}

.a2hs-guide-tekst {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink-muted);
}

@media (prefers-reduced-motion: reduce) {
  .maskot,
  .brand,
  .tagline,
  .empty,
  .status-toast.status-toast--enter {
    animation: none;
  }
}
