@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ── Design tokens ── */
:root {
  --bg:        #0d0d0d;
  --surface:   #1a1a1a;
  --surface-2: #222222;
  --surface-3: #2a2a2a;
  --border:    rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.14);
  --text:      #ececec;
  --text-2:    #9a9a9a;
  --text-3:    #5a5a5a;
  --green:     #10a37f;
  --green-dim: #0d7a61;
  --green-bg:  rgba(16,163,127,0.10);
  --green-bd:  rgba(16,163,127,0.25);
  --yellow:    #f5a623;
  --yellow-bg: rgba(245,166,35,0.10);
  --yellow-bd: rgba(245,166,35,0.25);
  --red:       #ef4444;
  --red-bg:    rgba(239,68,68,0.10);
  --red-bd:    rgba(239,68,68,0.25);
  --blue:      #60a5fa;
  --blue-bg:   rgba(96,165,250,0.10);
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow:    0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
  --transition: 160ms cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.5;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  width: 100%;
  max-width: 460px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: .7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
  width: 100%;
  text-decoration: none;
  letter-spacing: -.01em;
}

.btn:hover:not(:disabled)  { opacity: .88; transform: translateY(-1px); }
.btn:active:not(:disabled) { transform: translateY(0); opacity: 1; }
.btn:disabled              { opacity: .35; cursor: not-allowed; }

.btn-primary  { background: var(--green); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--green-dim); opacity: 1; }

.btn-secondary { background: var(--surface-3); color: var(--text); border-color: var(--border-md); }
.btn-accent    { background: var(--yellow); color: #111; }
.btn-success   { background: var(--green); color: #fff; }
.btn-danger    { background: var(--red); color: #fff; }
.btn-outline   { background: transparent; color: var(--text-2); border-color: var(--border-md); }
.btn-outline:hover:not(:disabled) { color: var(--text); border-color: var(--border-md); background: var(--surface-3); opacity: 1; }

/* ── Inputs ── */
input, textarea {
  font-family: inherit;
  font-size: 15px;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.5;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-bg);
}
textarea { resize: vertical; min-height: 100px; }

/* ── Error banner ── */
.error-banner {
  background: var(--red-bg);
  border: 1px solid var(--red-bd);
  border-radius: var(--radius);
  color: var(--red);
  padding: .75rem 1rem;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.error-banner::before { content: '\f071'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 13px; }

/* ── Transitions ── */
.fade-enter-active, .fade-leave-active { transition: opacity .18s ease, transform .18s ease; }
.fade-enter-from  { opacity: 0; transform: translateY(6px); }
.fade-leave-to    { opacity: 0; transform: translateY(-6px); }


/* ════════════════════════════════════════
   HOME SCREEN
════════════════════════════════════════ */
.title[data-v-153f1b86] {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: .4rem;
  letter-spacing: -.03em;
  line-height: 1.2;
}

.subtitle[data-v-153f1b86] {
  text-align: center;
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 1.75rem;
}

.tabs[data-v-153f1b86] {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 4px;
}

.tab[data-v-153f1b86] {
  flex: 1;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  padding: .55rem .75rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  color: var(--text-2);
  transition: background var(--transition), color var(--transition);
}
.tab[data-v-153f1b86]:hover { color: var(--text); }
.tab.active[data-v-153f1b86] { background: var(--surface-3); color: var(--text); box-shadow: var(--shadow-sm); }

.field-label[data-v-153f1b86] {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: .4rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.mt[data-v-153f1b86]    { margin-top: 1.1rem; }
.mt-sm[data-v-153f1b86] { margin-top: .75rem; }


/* ════════════════════════════════════════
   LOBBY SCREEN
════════════════════════════════════════ */
.header[data-v-5895ea72] { text-align: center; margin-bottom: 1.5rem; }

.label[data-v-5895ea72] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .5rem;
}

.code-row[data-v-5895ea72] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

.code[data-v-5895ea72] {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--green);
}

.copy-btn[data-v-5895ea72] {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
}
.copy-btn[data-v-5895ea72]:hover { background: var(--surface-3); color: var(--text); }

.hint[data-v-5895ea72] {
  font-size: 12px;
  color: var(--text-3);
  margin-top: .3rem;
}

.players-section[data-v-5895ea72] { margin-bottom: 1.5rem; }

.player-list[data-v-5895ea72] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .6rem;
}

.player-item[data-v-5895ea72] {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .9rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.avatar[data-v-5895ea72] {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.name[data-v-5895ea72] { flex: 1; font-weight: 500; font-size: 14px; }

.crown[data-v-5895ea72] {
  font-size: 13px;
  color: var(--yellow);
}
.crown[data-v-5895ea72]::before { content: '\f521'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.footer[data-v-5895ea72] { display: flex; flex-direction: column; align-items: center; gap: .5rem; }

.min-players[data-v-5895ea72], .waiting[data-v-5895ea72] {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: .25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
}


/* ════════════════════════════════════════
   PHASE BADGES
════════════════════════════════════════ */
.phase-badge[data-v-d3fbce70],
.phase-badge[data-v-69f8096e],
.phase-badge[data-v-5b674f41] {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.phase-badge[data-v-d3fbce70] {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-bd);
}
.phase-badge[data-v-69f8096e] {
  background: var(--yellow-bg);
  color: var(--yellow);
  border: 1px solid var(--yellow-bd);
}
.phase-badge[data-v-5b674f41] {
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid rgba(96,165,250,.25);
}


/* ════════════════════════════════════════
   WRITING SCREEN
════════════════════════════════════════ */
.question-box[data-v-d3fbce70] {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
}

.question-label[data-v-d3fbce70] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .4rem;
}

.question-text[data-v-d3fbce70] {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.instruction[data-v-d3fbce70] {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: .75rem;
  line-height: 1.6;
}

.char-count[data-v-d3fbce70] {
  text-align: right;
  font-size: 12px;
  color: var(--text-3);
  margin-top: .3rem;
}

.mt[data-v-d3fbce70] { margin-top: 1rem; }

/* Writing waiting */
.waiting-box[data-v-d3fbce70] { text-align: center; padding: .5rem 0; }

.spinner[data-v-d3fbce70] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  font-size: 1.4rem;
  margin-bottom: .75rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(.94); }
}

.waiting-text[data-v-d3fbce70] {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .25rem;
}

.waiting-sub[data-v-d3fbce70] {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 1.1rem;
}

.progress[data-v-d3fbce70] {
  height: 6px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: .4rem;
}
.progress-bar[data-v-d3fbce70] {
  height: 100%;
  background: var(--green);
  border-radius: 999px;
  transition: width .5s ease;
}
.progress-label[data-v-d3fbce70] {
  font-size: 12px;
  color: var(--text-3);
}


/* ════════════════════════════════════════
   VOTING SCREEN
════════════════════════════════════════ */
.question-box[data-v-69f8096e] {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
}

.question-label[data-v-69f8096e] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .4rem;
}

.question-text[data-v-69f8096e] {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.instruction[data-v-69f8096e] {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: .75rem;
}

.answer-list[data-v-69f8096e] { display: flex; flex-direction: column; gap: .5rem; }

.answer-card[data-v-69f8096e] {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
  width: 100%;
}

.answer-card[data-v-69f8096e]:hover {
  background: var(--surface-3);
  border-color: var(--border-md);
}

.answer-card.selected[data-v-69f8096e] {
  background: var(--green-bg);
  border-color: var(--green);
}

.answer-id[data-v-69f8096e] {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}

.answer-card.selected[data-v-69f8096e] .answer-id[data-v-69f8096e] {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.answer-text[data-v-69f8096e] {
  flex: 1;
  line-height: 1.5;
  font-size: 14px;
  color: var(--text);
}

.check[data-v-69f8096e] {
  color: var(--green);
  font-size: 15px;
  flex-shrink: 0;
  align-self: center;
}
.check[data-v-69f8096e]::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.mt[data-v-69f8096e] { margin-top: 1rem; }

/* Voting waiting */
.waiting-box[data-v-69f8096e] { text-align: center; padding: .5rem 0; }

.waiting-emoji[data-v-69f8096e] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow-bg);
  color: var(--yellow);
  font-size: 1.3rem;
  margin-bottom: .75rem;
  animation: pulse 2s ease-in-out infinite;
}
.waiting-emoji[data-v-69f8096e]::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.waiting-text[data-v-69f8096e] {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .25rem;
}

.waiting-sub[data-v-69f8096e] {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 1.1rem;
}

.progress[data-v-69f8096e] {
  height: 6px;
  background: var(--surface-3);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: .4rem;
}
.progress-bar[data-v-69f8096e] {
  height: 100%;
  background: var(--yellow);
  border-radius: 999px;
  transition: width .5s ease;
}
.progress-label[data-v-69f8096e] { font-size: 12px; color: var(--text-3); }


/* ════════════════════════════════════════
   RESULTS SCREEN
════════════════════════════════════════ */
.real-answer-box[data-v-5b674f41] {
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}

.real-label[data-v-5b674f41] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.real-label[data-v-5b674f41]::before { content: '\f544'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 11px; }

.real-text[data-v-5b674f41] {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

.section[data-v-5b674f41] { margin-bottom: 1.25rem; }

.section-title[data-v-5b674f41] {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .65rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.answer-reveal-list[data-v-5b674f41] { display: flex; flex-direction: column; gap: .4rem; }

.reveal-card[data-v-5b674f41] {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
}

.reveal-card.real[data-v-5b674f41] {
  background: var(--green-bg);
  border-color: var(--green-bd);
}

.reveal-header[data-v-5b674f41] {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .3rem;
}

.answer-id[data-v-5b674f41] {
  width: 22px; height: 22px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.answer-id--real[data-v-5b674f41] {
  background: var(--green);
  color: #fff;
}

.author[data-v-5b674f41] {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

.reveal-text[data-v-5b674f41] {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.vote-list[data-v-5b674f41] { list-style: none; display: flex; flex-direction: column; gap: .35rem; }

.vote-item[data-v-5b674f41] {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .85rem;
  border-radius: var(--radius);
  font-size: 13px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.vote-item.correct[data-v-5b674f41] { border-color: var(--green-bd); background: var(--green-bg); }
.vote-item.wrong[data-v-5b674f41]   { border-color: var(--red-bd);   background: var(--red-bg); }

.voter[data-v-5b674f41]      { flex: 1; font-weight: 500; }
.arrow[data-v-5b674f41]      { color: var(--text-3); font-size: 11px; }
.voted-for[data-v-5b674f41]  { flex: 1; text-align: right; color: var(--text-2); font-size: 12px; }
.vote-icon[data-v-5b674f41]  { font-size: 13px; flex-shrink: 0; }
.vote-icon[data-v-5b674f41]::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.vote-item.correct[data-v-5b674f41] .vote-icon[data-v-5b674f41]::before { content: '\f00c'; color: var(--green); }
.vote-item.wrong[data-v-5b674f41]   .vote-icon[data-v-5b674f41]::before { content: '\f00d'; color: var(--red); }

.scoreboard[data-v-5b674f41] { list-style: none; display: flex; flex-direction: column; gap: .4rem; }

.score-item[data-v-5b674f41] {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 14px;
}

.score-item.gold[data-v-5b674f41]   { background: rgba(245,166,35,.1); border-color: rgba(245,166,35,.25); }
.score-item.silver[data-v-5b674f41] { background: rgba(180,180,180,.06); border-color: rgba(180,180,180,.15); }
.score-item.bronze[data-v-5b674f41] { background: rgba(180,110,60,.08); border-color: rgba(180,110,60,.18); }

.medal[data-v-5b674f41] { font-size: 1.15rem; flex-shrink: 0; width: 20px; }
.score-name[data-v-5b674f41] { flex: 1; font-weight: 500; }
.score-pts[data-v-5b674f41]  { font-size: 13px; font-weight: 600; color: var(--green); }

.actions[data-v-5b674f41]  { display: flex; flex-direction: column; gap: .5rem; }
.waiting[data-v-5b674f41]  { font-size: 12px; color: var(--text-3); text-align: center; }
.mt-sm[data-v-5b674f41]    { margin-top: .3rem; }

/* ════════════════════════════════════════
   ICON INJECTIONS via ::before / content
════════════════════════════════════════ */

/* Logo pill above the title */
.card::before {
  content: none;
}

/* Tab icons */
.tab[data-v-153f1b86]:first-child::before {
  content: '\2b'; /* + */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: .35rem;
  font-size: 11px;
}
.tab[data-v-153f1b86]:last-child::before {
  content: '\f2f6';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: .35rem;
  font-size: 11px;
}

/* Copy btn icon */
.copy-btn[data-v-5895ea72]::before {
  content: '\f0c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
}

/* Waiting icons */
.spinner[data-v-d3fbce70]::before {
  content: '\f017';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
}

/* Min players warning */
.min-players[data-v-5895ea72]::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: var(--yellow);
}

/* Waiting for host */
.waiting[data-v-5895ea72]::before {
  content: '\f254';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 12px;
  margin-right: .25rem;
}

/* Phase badge icons */
.phase-badge[data-v-d3fbce70]::before {
  content: '\f303';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
}
.phase-badge[data-v-69f8096e]::before {
  content: '\f0e3';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
}
.phase-badge[data-v-5b674f41]::before {
  content: '\f091';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
}

/* Section title icons */
.section-title[data-v-5b674f41]:nth-child(1)::before { content: '\f544'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

/* Button icons */
.btn-primary[type="submit"]::before,
.btn-success::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
}

/* Waiting vote icon already handled by animation */
.waiting-emoji[data-v-69f8096e] {
  font-size: 0;
}
.waiting-emoji[data-v-69f8096e]::before {
  font-size: 1.3rem;
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

/* Arrow in vote list */
.arrow[data-v-5b674f41] {
  font-size: 0;
}
.arrow[data-v-5b674f41]::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--text-3);
}

/* ════════════════════════════════════════
   EXTRA POLISH
════════════════════════════════════════ */

/* Divider above footer buttons */
.actions[data-v-5b674f41] {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: .25rem;
}

/* The title area: add a subtle logo badge */
.title[data-v-153f1b86] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.title[data-v-153f1b86]::before {
  content: '';
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Selection */
::selection { background: var(--green-bg); color: var(--green); }
