:root {
  --ink: #24428f;
  --ink-2: rgba(36, 66, 143, 0.66);
  --ink-3: rgba(36, 66, 143, 0.32);
  --red: #bf3b2b;
  --paper: #e9e2cf;
  --paper-hi: #f4efe0;
  --tin: #c4691a;
  --stamp: 'Anton', 'Arial Narrow', sans-serif;
  --hand: 'Patrick Hand', cursive;
  --desk: #565049;
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; background: var(--desk); font-family: system-ui, -apple-system, sans-serif; overflow-x: hidden; }
#app { min-height: 100vh; min-height: 100dvh; position: relative; }

/* ─── DESK BACKGROUND ──────────────────────────────── */
.desk-bg {
  position: fixed; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
    linear-gradient(180deg, #6b635a 0%, #565049 50%, #4a443d 100%);
  z-index: 0;
}
.vignette {
  position: fixed; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 78% 72% at 50% 56%, transparent 52%, rgba(26, 20, 14, 0.42) 100%);
  z-index: 1;
}

/* ─── SCREENS ──────────────────────────────────────── */
.screen { display: none; position: relative; z-index: 2; min-height: 100vh; min-height: 100dvh; }
.screen.active { display: block; }
.content-wrap {
  position: relative; z-index: 3; max-width: 520px; margin: 0 auto;
  padding: env(safe-area-inset-top, 12px) 16px env(safe-area-inset-bottom, 40px);
}

/* ─── LOADING ──────────────────────────────────────── */
.loading-state { text-align: center; padding: 60px 20px; }
.spinner {
  width: 36px; height: 36px; margin: 0 auto;
  border: 3px solid var(--ink-3); border-top-color: var(--tin);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── TOP BAR ──────────────────────────────────────── */
.top-bar { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.user-name { font-family: var(--hand); font-size: 16px; color: var(--paper); opacity: 0.8; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.top-bar-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.top-bar-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--paper);
  font-size: 16px; cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
  border-radius: 4px;
}
.top-bar-btn:hover, .top-bar-btn:active { opacity: 1; }
.logout-btn {
  background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--paper);
  font-family: var(--stamp); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; cursor: pointer; opacity: 0.7; transition: opacity 0.2s;
  min-height: 36px;
}
.logout-btn:hover, .logout-btn:active { opacity: 1; }

/* ─── BRAND ────────────────────────────────────────── */
.brand { text-align: center; padding: 20px 0 16px; }
.compact-brand { padding: 10px 0 16px; }
.brand-icon { margin-bottom: 12px; }
.title { font-family: var(--stamp); font-size: 44px; color: var(--paper); line-height: 1; text-transform: uppercase; }
.small-title { font-size: 36px; }
.subtitle { font-size: 28px; color: var(--tin); }
.tagline { font-family: var(--hand); font-size: 16px; color: var(--paper); opacity: 0.6; margin-top: 6px; }

/* ─── CHIT (Paper Note) ────────────────────────────── */
.chit {
  position: relative; background-color: var(--paper);
  background-image: repeating-linear-gradient(transparent 0 26px, rgba(96, 126, 190, 0.22) 26px 27px);
  background-size: auto; background-position: 0 9px; background-repeat: repeat;
  padding: 20px 18px; margin: 14px 0;
  box-shadow: 0 2px 3px rgba(20, 12, 4, 0.4), 0 9px 20px rgba(20, 12, 4, 0.45);
  clip-path: polygon(
    0 7px, 5% 1px, 11% 8px, 17% 2px, 24% 9px, 31% 2px, 38% 8px, 45% 1px,
    52% 8px, 59% 2px, 66% 9px, 73% 2px, 80% 8px, 87% 1px, 94% 8px, 100% 3px,
    100% calc(100% - 6px), 95% 100%, 88% calc(100% - 7px), 80% calc(100% - 1px),
    72% calc(100% - 8px), 64% calc(100% - 2px), 56% calc(100% - 7px),
    47% calc(100% - 1px), 39% calc(100% - 8px), 30% calc(100% - 2px),
    22% calc(100% - 7px), 13% calc(100% - 1px), 6% calc(100% - 8px), 0 calc(100% - 2px)
  );
  transform: rotate(-0.8deg);
}
.chit-tear { position: absolute; top: 0; left: 32px; width: 2px; height: 100%; background: rgba(176, 54, 42, 0.4); }
.chit-title { font-family: var(--stamp); font-size: 22px; color: var(--ink); text-transform: uppercase; margin-bottom: 12px; padding-left: 12px; }
.chit-subtitle { font-family: var(--stamp); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 10px; padding-left: 12px; }

/* ─── TOUR HEADER ──────────────────────────────────── */
.tour-header { display: flex; align-items: center; gap: 12px; padding-left: 12px; flex-wrap: wrap; }
.tour-title { font-family: var(--stamp); font-size: 22px; color: var(--ink); text-transform: uppercase; }
.hist-title { font-size: 18px; }
.tour-format { font-family: var(--hand); font-size: 15px; color: var(--ink-2); padding-left: 12px; margin-top: 4px; }
.tour-date { font-family: var(--hand); font-size: 13px; color: var(--ink-3); margin-left: auto; }

.lobby-status {
  display: inline-block; padding: 3px 10px;
  font-family: var(--stamp); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid; border-radius: 2px;
}
.lobby-status.lobby { border-color: var(--tin); color: var(--tin); }
.lobby-status.active { border-color: #25d366; color: #25d366; }
.lobby-status.completed { border-color: var(--ink-3); color: var(--ink-3); }

/* ─── FORMS ────────────────────────────────────────── */
.form-group { margin-bottom: 14px; padding-left: 12px; }
.form-label { display: block; font-family: var(--stamp); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(90, 103, 136, 0.55); margin-bottom: 5px; }
.form-input {
  width: 100%; padding: 12px; font-family: var(--hand); font-size: 17px;
  color: var(--ink); background: var(--paper-hi);
  border: 2px solid rgba(36, 66, 143, 0.2); border-radius: 0; outline: none; transition: border-color 0.2s;
  min-height: 44px; /* iOS touch target */
}
.form-input:focus { border-color: var(--ink); }
.form-input::placeholder { color: var(--ink-3); }
.field-note { font-family: var(--hand); font-size: 13px; color: var(--red); margin-top: 4px; padding-left: 0; }

.format-select { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.format-btn {
  display: flex; flex-direction: column; align-items: center; padding: 14px 10px;
  background: var(--paper-hi); border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
  min-height: 44px;
}
.format-btn.active { border-color: var(--ink); background: var(--paper); }
.format-icon { font-size: 24px; margin-bottom: 6px; }
.format-name { font-family: var(--stamp); font-size: 13px; color: var(--ink); }
.format-desc { font-family: var(--hand); font-size: 12px; color: var(--ink-2); margin-top: 3px; }

.size-select { display: flex; gap: 10px; }
.size-btn {
  flex: 1; padding: 12px; font-family: var(--stamp); font-size: 18px;
  color: var(--ink); background: var(--paper-hi);
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
  min-height: 44px;
}
.size-btn.active { border-color: var(--ink); background: var(--paper); }

/* ─── BUTTONS ──────────────────────────────────────── */
.stamp-btn {
  display: block; width: 100%; padding: 14px 20px; margin-top: 16px;
  background: var(--red); color: #f6efe0;
  font-family: var(--stamp); font-size: 15px; letter-spacing: 0.09em;
  text-transform: uppercase; border: 0; cursor: pointer;
  transform: rotate(0.4deg);
  box-shadow: 0 4px 0 rgba(120, 34, 25, 0.85), 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.12s, box-shadow 0.12s;
  min-height: 48px; /* Touch target */
}
.stamp-btn:active { transform: rotate(0.4deg) translateY(3px); box-shadow: 0 1px 0 rgba(120, 34, 25, 0.85); }
.secondary-btn { background: var(--paper-hi); color: var(--ink); box-shadow: 0 4px 0 rgba(36, 66, 143, 0.3); margin-top: 10px; }
.secondary-btn:active { box-shadow: 0 1px 0 rgba(36, 66, 143, 0.3); }
.danger-btn { background: #fff0e0; color: var(--red); border: 1px solid var(--red); box-shadow: none; }
.danger-btn:active { transform: none; }
.stamp-btn-sm {
  padding: 12px 18px; background: var(--red); color: #f6efe0;
  font-family: var(--stamp); font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; border: 0; cursor: pointer;
  box-shadow: 0 3px 0 rgba(120, 34, 25, 0.85); white-space: nowrap;
  min-height: 44px;
}
.stamp-btn-sm:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(120, 34, 25, 0.85); }

/* ─── PLAYERS ──────────────────────────────────────── */
.players-list { max-height: 300px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.player-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-bottom: 1px dashed rgba(96, 126, 190, 0.3);
  min-height: 44px;
}
.player-row:last-child { border-bottom: 0; }
.player-number { font-family: var(--stamp); font-size: 11px; color: var(--ink-3); min-width: 22px; }
.player-name { font-family: var(--hand); font-size: 17px; color: var(--ink); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-tag { font-family: var(--hand); font-size: 14px; color: var(--ink-2); opacity: 0.7; flex-shrink: 0; }
.player-badge { font-family: var(--stamp); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); padding: 3px 7px; border: 1px solid var(--red); flex-shrink: 0; }
.manage-player { position: relative; }
.remove-btn {
  background: none; border: 1px solid var(--red); color: var(--red);
  font-size: 14px; width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  flex-shrink: 0;
}
.remove-btn:hover, .remove-btn:active { background: var(--red); color: white; }
.empty-note { font-family: var(--hand); font-size: 15px; color: var(--ink-3); text-align: center; padding: 16px; font-style: italic; }
.empty-text { font-family: var(--hand); font-size: 17px; color: var(--ink-2); margin-bottom: 4px; }
.empty-sub { font-family: var(--hand); font-size: 14px; color: var(--ink-3); }
.empty-sub a { color: var(--tin); text-decoration: underline; }

/* ─── BRACKET TREE ─────────────────────────────────── */
.bracket-tree { overflow-x: auto; padding: 8px 0; -webkit-overflow-scrolling: touch; }
.bracket-grid {
  display: flex;
  gap: 0;
  min-width: max-content;
  align-items: stretch;
}
.bracket-col {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  padding: 0 6px;
  position: relative;
}
.bracket-col-title {
  font-family: var(--stamp);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
  padding: 6px 8px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.bracket-card {
  background: var(--paper-hi);
  border: 1px solid var(--ink-3);
  margin-bottom: 8px;
  transition: all 0.2s;
}
.bracket-card.done { border-color: var(--red); }
.bracket-card.mine { box-shadow: 0 0 0 2px var(--tin); }
.bracket-slot {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(96, 126, 190, 0.15);
  position: relative;
  min-height: 32px;
}
.bracket-slot:last-child { border-bottom: 0; }
.bracket-slot.winner { background: rgba(191, 59, 43, 0.08); }
.bracket-slot.winner .bracket-name { color: var(--red); font-weight: bold; }
.bracket-slot.self { background: rgba(196, 105, 26, 0.1); }
.bracket-name {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--ink);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.bracket-tag-sm {
  font-family: var(--hand);
  font-size: 11px;
  color: var(--ink-3);
  white-space: nowrap;
  flex-shrink: 0;
}
.bracket-check {
  font-size: 12px;
  color: var(--red);
  font-weight: bold;
  margin-left: 2px;
  flex-shrink: 0;
}

/* Compact bracket for history */
.bracket-tree.compact .bracket-col { min-width: 110px; }
.bracket-tree.compact .bracket-name { font-size: 12px; }
.bracket-tree.compact .bracket-tag-sm { font-size: 10px; }
.bracket-tree.compact .bracket-col-title { font-size: 10px; padding: 4px 6px; }
.bracket-tree.compact .bracket-slot { padding: 4px 6px; min-height: 26px; }
.bracket-tree.compact .bracket-card { margin-bottom: 6px; }

/* ─── CHAMPION ─────────────────────────────────────── */
.champion-chit { text-align: center; border: 2px solid var(--red); }
.champion-display { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 12px; }
.champion-crown { font-size: 36px; }
.champion-label { display: block; font-family: var(--stamp); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.champion-name { font-family: var(--stamp); font-size: 26px; color: var(--red); text-transform: uppercase; }
.champion-inline { display: flex; align-items: center; gap: 8px; padding: 8px 12px; margin-bottom: 8px; }
.champion-crown-sm { font-size: 20px; }
.champion-inline-name { font-family: var(--stamp); font-size: 16px; color: var(--red); text-transform: uppercase; }

/* ─── HISTORY ──────────────────────────────────────── */
.history-section { margin-top: 20px; }
.history-title {
  font-family: var(--stamp); font-size: 18px; color: var(--paper);
  text-transform: uppercase; letter-spacing: 0.08em; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 4px;
  opacity: 0.8;
}
.history-chit { transform: rotate(0.3deg); }
.history-admin { display: flex; gap: 8px; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(96, 126, 190, 0.3); }
.hist-admin-btn {
  flex: 1; padding: 8px 12px; font-family: var(--stamp); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--ink-3);
  background: var(--paper-hi); color: var(--ink); cursor: pointer; transition: all 0.2s;
  min-height: 36px;
}
.hist-admin-btn:hover, .hist-admin-btn:active { background: var(--ink); color: var(--paper); }
.hist-admin-btn.danger { border-color: var(--red); color: var(--red); }
.hist-admin-btn.danger:hover, .hist-admin-btn.danger:active { background: var(--red); color: white; }
.hist-admin-btn.sm { flex: none; padding: 4px 10px; font-size: 10px; min-height: 30px; }

/* ─── MATCH CARD ───────────────────────────────────── */
.my-match-chit { border: 2px solid var(--tin); }
.match-players { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 12px 0; }
.match-player { text-align: center; flex: 1; min-width: 0; }
.match-player-name { font-family: var(--hand); font-size: 18px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match-player.you .match-player-name { color: var(--red); }
.match-vs { font-family: var(--stamp); font-size: 22px; color: var(--ink-3); flex-shrink: 0; }
.match-actions { display: flex; flex-direction: column; gap: 8px; }
.match-btn {
  padding: 12px; font-family: var(--stamp); font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase; border: 0;
  cursor: pointer; transition: all 0.2s; text-align: center; text-decoration: none;
  min-height: 44px; display: flex; align-items: center; justify-content: center;
}
.match-btn.play { background: var(--tin); color: white; }
.match-btn.report { background: var(--ink); color: white; }

/* ─── ADMIN ────────────────────────────────────────── */
.admin-chit { border: 2px solid var(--red); }
.admin-actions { display: flex; flex-direction: column; gap: 0; }
.edit-form { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--ink-3); }

/* ─── TOAST ────────────────────────────────────────── */
.toast {
  position: fixed; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink); color: var(--paper);
  padding: 12px 24px; font-family: var(--hand); font-size: 16px;
  border-radius: 4px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0; transition: all 0.3s ease; z-index: 100;
  max-width: calc(100vw - 32px); text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── MODAL ────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(18, 12, 6, 0.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 50; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 16px;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 340px; background: var(--paper);
  padding: 22px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.wide-modal { max-width: 420px; }
.modal-title { font-family: var(--stamp); font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.modal-desc { font-family: var(--hand); font-size: 15px; color: var(--ink-2); margin-bottom: 14px; }
.modal-field { margin-bottom: 10px; }
.modal-field.danger-zone { border-top: 1px dashed rgba(96, 126, 190, 0.3); padding-top: 12px; margin-top: 12px; }
.modal-input {
  width: 100%; padding: 12px; font-family: var(--hand); font-size: 15px;
  border: 2px solid var(--ink-3); background: var(--paper-hi); color: var(--ink);
  appearance: auto; min-height: 44px;
}
.modal-input:focus { border-color: var(--ink); outline: none; }
.modal-actions { display: flex; gap: 8px; margin-top: 14px; }
.modal-btn {
  flex: 1; padding: 12px; font-family: var(--stamp); font-size: 13px;
  text-transform: uppercase; border: 0; cursor: pointer; min-height: 44px;
}
.modal-btn.confirm { background: var(--red); color: white; }
.modal-btn.cancel { background: var(--ink-3); color: var(--ink); }

.create-form { transform: rotate(0.5deg); }

/* ─── USER MANAGEMENT (ADMIN) ──────────────────────── */
.user-list-admin { max-height: 50vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.user-row-admin {
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px 0; border-bottom: 1px dashed rgba(96, 126, 190, 0.3);
}
.user-row-admin:last-child { border-bottom: 0; }
.user-info-admin { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.user-name-admin { font-family: var(--hand); font-size: 16px; color: var(--ink); }
.user-username-admin { font-family: var(--hand); font-size: 13px; color: var(--ink-3); }
.admin-badge {
  font-family: var(--stamp); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tin); padding: 2px 6px; border: 1px solid var(--tin);
}
.user-actions-admin { display: flex; gap: 6px; flex-wrap: wrap; }

/* ─── AUTH SCREEN ──────────────────────────────────── */
.auth-chit { transform: rotate(-0.3deg); }
.auth-switch { font-family: var(--hand); font-size: 14px; color: var(--ink-2); text-align: center; margin-top: 12px; }
.auth-switch a { color: var(--tin); text-decoration: underline; cursor: pointer; }

/* ─── RESPONSIVE: TABLETS+ ─────────────────────────── */
@media (min-width: 760px) {
  .content-wrap { max-width: 600px; padding: 40px 24px; }
  .title { font-size: 58px; }
  .subtitle { font-size: 38px; }
  .bracket-col { min-width: 170px; }
}

/* ─── RESPONSIVE: SMALL PHONES ─────────────────────── */
@media (max-width: 380px) {
  .content-wrap { padding: 8px 10px 30px; }
  .chit { padding: 16px 14px; margin: 10px 0; }
  .title { font-size: 36px; }
  .small-title { font-size: 28px; }
  .subtitle { font-size: 22px; }
  .tour-title { font-size: 18px; }
  .hist-title { font-size: 15px; }
  .format-btn { padding: 10px 8px; }
  .format-name { font-size: 12px; }
  .format-desc { font-size: 11px; }
  .bracket-col { min-width: 120px; }
  .bracket-name { font-size: 12px; }
  .bracket-slot { padding: 5px 6px; }
  .player-name { font-size: 15px; }
  .player-tag { font-size: 12px; }
  .match-player-name { font-size: 16px; }
  .match-vs { font-size: 18px; }
  .champion-name { font-size: 22px; }
  .champion-crown { font-size: 28px; }
  .modal { padding: 18px; }
}

/* ─── RESPONSIVE: LANDSCAPE ────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .brand { padding: 8px 0; }
  .brand-icon { display: none; }
  .title { font-size: 28px; }
  .small-title { font-size: 22px; }
  .subtitle { font-size: 18px; }
  .tagline { display: none; }
  .compact-brand { padding: 4px 0 8px; }
}

/* ─── DARK MODE SUPPORT ────────────────────────────── */
@media (prefers-color-scheme: dark) {
  /* Already dark by default, no changes needed */
}

/* ─── SAFE AREA (iPhone notch) ─────────────────────── */
@supports (padding: env(safe-area-inset-top)) {
  .content-wrap { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
}

/* ─── SCROLLBAR STYLING ────────────────────────────── */
.players-list::-webkit-scrollbar,
.user-list-admin::-webkit-scrollbar,
.bracket-tree::-webkit-scrollbar { width: 4px; height: 4px; }
.players-list::-webkit-scrollbar-thumb,
.user-list-admin::-webkit-scrollbar-thumb,
.bracket-tree::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 2px; }

/* ─── FOCUS VISIBLE (accessibility) ────────────────── */
:focus-visible { outline: 2px solid var(--tin); outline-offset: 2px; }
button:focus-visible { outline: 2px solid var(--tin); outline-offset: 2px; }
