/* Gw Media — minimal premium monochrome design system.
   White surfaces, thin dark borders, rounded corners, yellow only for active nav. */

:root {
  --bg: #f6f6f7;
  --card: #ffffff;
  --ink: #0d0d0f;
  --muted: #6b6b73;
  --line: #e4e4e8;
  --line-strong: #0d0d0f;
  --yellow: #ffd84d;
  --yellow-soft: #fff6d6;
  --radius: 16px;
  --shadow-card: 0 1px 2px rgba(13, 13, 15, .05), 0 10px 24px -18px rgba(13, 13, 15, .35);
  --shadow-nav: 0 -6px 20px -14px rgba(13, 13, 15, .5);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 18px 16px 28px;
}
.page.with-nav { padding-bottom: 96px; }
.admin .page { max-width: none; }

/* ---------------------------------------------------------- typography */
h1 { font-size: 22px; font-weight: 800; margin: 0 0 4px; letter-spacing: -.01em; }
h2 { font-size: 16px; font-weight: 800; margin: 22px 0 10px; }
h3 { font-size: 14px; font-weight: 700; margin: 0 0 6px; }
p  { margin: 0 0 10px; font-size: 14px; line-height: 1.55; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.big-amount { font-size: 32px; font-weight: 800; letter-spacing: -.02em; }

/* ---------------------------------------------------------- top bar */
.topbar {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; gap: 10px;
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
}
.topbar-title { font-weight: 800; font-size: 16px; }
.back { font-size: 18px; line-height: 1; padding: 4px 8px; border: 1px solid var(--line); border-radius: 10px; }

/* ---------------------------------------------------------- cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 16px;
  margin-bottom: 14px;
}
.card-tight { padding: 0; overflow: hidden; }
.card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  font-weight: 800; font-size: 14px;
}
.row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px;
}
.row:last-child { border-bottom: 0; }
.row .v { font-weight: 700; text-align: right; max-width: 58%; overflow-wrap: anywhere; }
.row .k { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 14px; box-shadow: var(--shadow-card);
}
.stat .n { font-size: 19px; font-weight: 800; }
.stat .t { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* ---------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 18px; width: 100%;
  border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--ink); color: #fff;
  font: 700 15px/1 inherit; cursor: pointer;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-outline { background: var(--card); color: var(--ink); }
.btn-sm { height: 36px; padding: 0 12px; font-size: 13px; width: auto; border-radius: 10px; }
.btn-row { display: flex; gap: 10px; }
.btn-danger { background: #b3261e; border-color: #b3261e; color: #fff; }
.link { text-decoration: underline; font-size: 13px; }

/* ---------------------------------------------------------- forms */
label.field { display: block; margin-bottom: 12px; }
label.field > span { display: block; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
input[type=text], input[type=tel], input[type=email], input[type=number],
input[type=password], input[type=date], select, textarea {
  width: 100%; height: 48px; padding: 0 14px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--card); color: var(--ink);
  font: 500 15px/1 inherit;
}
textarea { height: auto; min-height: 110px; padding: 12px 14px; line-height: 1.5; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.otp-input { letter-spacing: .45em; text-align: center; font-weight: 800; font-size: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 13px;
  font-size: 13px; font-weight: 600; background: var(--card); cursor: pointer;
}
.chip input { display: none; }
.chip.is-on { background: var(--ink); color: #fff; }
.filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 12px; }
.filters a { white-space: nowrap; border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600; background: var(--card); }
.filters a.is-on { background: var(--ink); color: #fff; }

.segment {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: #ededf0; border-radius: 12px; padding: 4px; margin-bottom: 14px;
}
.segment a { text-align: center; padding: 10px 0; border-radius: 9px; font-weight: 700; font-size: 14px; color: var(--muted); }
.segment a.is-on { background: var(--card); color: var(--ink); box-shadow: var(--shadow-card); }

/* ---------------------------------------------------------- campaign cards */
.campaign {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card); overflow: hidden; margin-bottom: 14px; display: block;
}
.campaign .banner { aspect-ratio: 16/9; background: #f0f0f3 center/cover no-repeat; border-bottom: 1px solid var(--line); }
.campaign .banner.placeholder { display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--muted); font-size: 13px; }
/* Banner images render as real <img> so broken/hotlink-blocked links fall back. */
.banner-wrap { position: relative; aspect-ratio: 16/9; background: #f0f0f3; overflow: hidden; border-bottom: 1px solid var(--line); }
.banner-wrap .banner-img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.banner-wrap .banner-fallback {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  font-weight: 800; color: var(--muted); font-size: 13px; text-align: center; padding: 0 12px;
}
.banner-wrap.is-broken .banner-fallback { display: flex; }

.campaign .body { padding: 14px 15px 15px; }
.campaign .brand { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.campaign .title { font-size: 15px; font-weight: 800; margin: 3px 0 5px; }
.campaign .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag { border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 600; background: #fafafb; }
.highlight { margin-top: 10px; background: var(--yellow-soft); border: 1px solid #f2dd92; border-radius: 10px; padding: 8px 10px; font-size: 12px; font-weight: 700; }

.badge { display: inline-block; border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.badge-pending { background: #fff6d6; border-color: #e6cf7a; }
.badge-approved, .badge-paid, .badge-completed { background: #e8f6ec; border-color: #86c79a; }
.badge-rejected, .badge-failed { background: #fdeceb; border-color: #e09a95; }
.badge-active, .badge-processing, .badge-in_review { background: #eaf0fd; border-color: #97aee4; }

/* ---------------------------------------------------------- flash */
.flash { border: 1px solid #86c79a; background: #e8f6ec; border-radius: 12px; padding: 11px 13px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.flash-error { border-color: #e09a95; background: #fdeceb; }

/* ---------------------------------------------------------- empty */
.empty { text-align: center; padding: 34px 16px; color: var(--muted); font-size: 14px; }

/* ---------------------------------------------------------- avatar */
.avatar {
  width: 58px; height: 58px; border-radius: 16px; border: 1px solid var(--line-strong);
  background: var(--card) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 19px;
  box-shadow: 3px 3px 0 var(--line-strong);
}

/* ---------------------------------------------------------- bottom nav */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10;
  max-width: 480px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--card); border-top: 1px solid var(--line);
  box-shadow: var(--shadow-nav);
  padding: 8px 8px 10px;
}
.nav-item {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 0; border-radius: 12px;
  color: #9a9aa2; font-size: 11px; font-weight: 600;
}
.nav-item svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-item.is-active { background: var(--yellow-soft); color: var(--ink); font-weight: 800; }
.nav-item.is-active::before {
  content: ""; position: absolute; left: 6px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 22px; border-radius: 3px; background: var(--yellow);
}

/* ---------------------------------------------------------- login */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 22px 16px; }
.login-card { width: 100%; max-width: 400px; background: var(--card); border: 1px solid var(--line-strong); border-radius: 20px; padding: 26px 22px; box-shadow: 0 2px 0 var(--line-strong), 0 20px 40px -28px rgba(0,0,0,.5); }
.brand-mark { font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.phone-field { display: flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; }
.phone-field span { padding: 0 12px; font-weight: 800; font-size: 15px; border-right: 1px solid var(--line); height: 48px; display: flex; align-items: center; background: #fafafb; }
.phone-field input { border: 0; border-radius: 0; }
.phone-field input:focus { outline: none; }
.steps { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---------------------------------------------------------- admin */
.admin { background: #f4f4f6; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-side { width: 232px; flex: 0 0 232px; background: #0d0d0f; color: #d8d8dd; padding: 20px 14px; }
.admin-side .brand { color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 18px; padding: 0 8px; }
.admin-side a { display: block; padding: 9px 10px; border-radius: 9px; font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }
.admin-side a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-side a.is-on { background: #fff; color: #0d0d0f; }
.admin-main { flex: 1; padding: 22px 26px 40px; min-width: 0; }
.admin-main h1 { font-size: 21px; margin-bottom: 16px; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 12px; margin-bottom: 20px; }
table.data { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 13.5px; }
table.data th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 11px 13px; border-bottom: 1px solid var(--line); background: #fafafb; }
table.data td { padding: 11px 13px; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data tr:last-child td { border-bottom: 0; }
.inline-form { display: inline; }
.toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.toolbar input, .toolbar select { height: 40px; width: auto; min-width: 190px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 860px) {
  .admin-shell { flex-direction: column; }
  .admin-side { width: auto; flex: none; display: flex; flex-wrap: wrap; gap: 4px; }
  .admin-side .brand { width: 100%; }
  .admin-main { padding: 16px; }
  .two-col { grid-template-columns: 1fr; }
  table.data { display: block; overflow-x: auto; }
}

/* ---------------------------------------------------------- chat */
.msg { border: 1px solid var(--line); border-radius: 14px; padding: 11px 13px; margin-bottom: 10px; background: var(--card); }
.msg.admin { background: #fafafb; border-color: var(--line-strong); }
.msg .who { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 4px; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

/* ---------------------------------------------------------- 3D cards */
.card-3d {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 15px 16px; margin-bottom: 12px; font-weight: 700; color: var(--ink);
  box-shadow: 0 2px 0 var(--line-strong), 0 14px 26px -20px rgba(13,13,15,.55);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-3d:active, .card-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--line-strong), 0 20px 34px -22px rgba(13,13,15,.6);
}

/* ---------------------------------------------------------- flash variants */
.flash-ok { border-color: #86c79a; background: #e8f6ec; }
.flash-err { border-color: #e09a95; background: #fdeceb; }

/* ---------------------------------------------------------- admin panel */
.admin-body { background: var(--bg); }
.admin-wrap { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; max-width: none; }
.admin-side {
  background: #141416; color: #fff; padding: 20px 14px; display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.admin-brand { color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 18px; display: block; }
.admin-brand span { display: block; font-size: 11px; font-weight: 600; color: #9a9aa2; letter-spacing: .08em; text-transform: uppercase; }
.admin-side nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.admin-side nav a {
  color: #c9c9cf; padding: 9px 12px; border-radius: 10px; font-size: 13.5px; font-weight: 600;
}
.admin-side nav a:hover { background: #222226; color: #fff; }
.admin-side nav a.is-on { background: var(--yellow-soft); color: var(--ink); }
.admin-side-foot { border-top: 1px solid #2a2a2e; padding-top: 12px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.admin-side-foot a { color: #c9c9cf; font-size: 13px; font-weight: 600; }
.admin-main { padding: 22px 26px 60px; min-width: 0; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.admin-top h1 { margin: 0; font-size: 22px; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; margin-bottom: 16px; }
.admin-stat { display: block; }
.admin-stat-v { font-size: 24px; font-weight: 800; margin-top: 4px; }
.admin-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.admin-toolbar { display: flex; gap: 10px; margin-bottom: 14px; }
.admin-toolbar .input { max-width: 320px; }
.admin-form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px 14px; }
.admin-main .card { margin-bottom: 14px; }
.admin-main table.data { display: table; width: 100%; }
@media (max-width: 900px) {
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; }
  .admin-cols { grid-template-columns: 1fr; }
}

/* ===== 3D animated hero (login / OTP step) ===== */
.hero-3d { perspective: 800px; display: flex; justify-content: center; margin: 22px 0 2px; }
.hero-3d-scene { position: relative; transform-style: preserve-3d; animation: hero-float 4.6s ease-in-out infinite; will-change: transform; }
.hero-3d-scene.is-tilting { animation: none; }
.phone3d {
  position: relative; width: 96px; height: 172px; margin: 0 auto;
  border-radius: 18px; background: #101013; border: 3px solid #232327;
  transform: rotateX(9deg) rotateY(-12deg); transform-style: preserve-3d;
  box-shadow: inset 0 0 0 3px #34343a, -16px 24px 34px -16px rgba(0,0,0,.5);
}
.phone3d::after { content: ""; position: absolute; top: 12px; left: 50%; width: 28px; height: 5px; margin-left: -14px; border-radius: 4px; background: #34343a; }
.ph-bar, .ph-pill { position: absolute; left: 16px; height: 8px; border-radius: 5px; background: #2c2c31; }
.ph-pill { height: 12px; }
.hero-bubble {
  position: absolute; right: -34px; top: 8px; width: 46px; height: 34px;
  background: var(--card); border: 1px solid var(--line-strong); border-radius: 12px 12px 12px 3px;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 0 16px 24px -14px rgba(0,0,0,.4);
  animation: hero-bob 4.6s ease-in-out infinite; animation-delay: -1.1s;
}
.hero-bubble span { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); }
.hero-code {
  position: absolute; right: -52px; top: 4px; display: flex; gap: 5px;
  background: var(--card); border: 1px solid var(--line-strong); border-radius: 12px; padding: 10px 12px;
  box-shadow: 0 16px 24px -14px rgba(0,0,0,.4);
  animation: hero-bob 4.6s ease-in-out infinite; animation-delay: -1.1s;
}
.hero-code i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); animation: hero-blink 1.6s ease-in-out infinite; }
.hero-code i:nth-child(2) { animation-delay: .15s; }
.hero-code i:nth-child(3) { animation-delay: .3s; }
.hero-code i:nth-child(4) { animation-delay: .45s; }
.hero-code i:nth-child(5) { animation-delay: .6s; }
.hero-code i:nth-child(6) { animation-delay: .75s; }
.hero-badge {
  position: absolute; left: -28px; bottom: 24px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; box-shadow: 0 14px 22px -12px rgba(0,0,0,.45);
  animation: hero-bob 4.6s ease-in-out infinite; animation-delay: -2.2s;
}
.hero-shadow {
  position: absolute; left: 50%; bottom: -22px; width: 112px; height: 16px; margin-left: -56px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.28), transparent 70%);
  animation: hero-shadow 4.6s ease-in-out infinite;
}
@keyframes hero-float { 0%, 100% { transform: translateY(0) rotateX(0deg); } 50% { transform: translateY(-9px) rotateX(2deg); } }
@keyframes hero-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes hero-blink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes hero-shadow { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.86); opacity: .7; } }
@media (prefers-reduced-motion: reduce) {
  .hero-3d-scene, .hero-bubble, .hero-code, .hero-badge, .hero-shadow, .hero-code i { animation: none !important; }
}

/* Raised 3D profile / section cards */
.card-raise {
  box-shadow: 0 1px 0 var(--line), 0 10px 22px -14px rgba(0,0,0,.30), 0 26px 40px -30px rgba(0,0,0,.28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card-raise:hover, .card-raise:active {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 var(--line), 0 16px 28px -14px rgba(0,0,0,.34), 0 32px 48px -30px rgba(0,0,0,.30);
}
@media (prefers-reduced-motion: reduce) { .card-raise { transition: none; } .card-raise:hover { transform: none; } }

/* Three compact, tactile actions at the end of Profile */
.profile-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
  perspective: 900px;
}
.profile-action-3d {
  min-height: 132px;
  padding: 13px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 5px 0 var(--line-strong), 0 17px 25px -18px rgba(13,13,15,.62);
  transform: rotateX(2deg) translateY(0);
  transform-style: preserve-3d;
  transition: transform .2s ease, box-shadow .2s ease;
}
.profile-action-3d:nth-child(2) { animation: profile-card-float 4s ease-in-out .3s infinite; }
.profile-action-3d:hover, .profile-action-3d:active {
  transform: rotateX(0) translateY(-5px);
  box-shadow: 0 8px 0 var(--line-strong), 0 25px 34px -20px rgba(13,13,15,.68);
}
.profile-action-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--card);
  box-shadow: 0 3px 0 var(--line-strong);
  font-size: 17px;
  font-weight: 800;
}
.profile-action-3d strong { font-size: 12px; line-height: 1.25; }
.profile-action-note { color: var(--muted); font-size: 9px; line-height: 1.3; }
.profile-action-3d .badge { padding: 2px 5px; font-size: 8px; vertical-align: 1px; }
.profile-delete-link {
  display: block;
  width: max-content;
  margin: 4px auto 16px;
  color: #b3261e;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}
@keyframes profile-card-float {
  0%, 100% { transform: rotateX(2deg) translateY(0); }
  50% { transform: rotateX(0) translateY(-4px); }
}
@media (max-width: 350px) {
  .profile-action-grid { gap: 7px; }
  .profile-action-3d { min-height: 124px; padding-inline: 5px; }
}
@media (prefers-reduced-motion: reduce) {
  .profile-action-3d { animation: none !important; transition: none; }
}

/* Two-factor setup (admin) */
.totp-setup { border: 1px solid var(--line-strong); border-radius: 14px; padding: 14px; margin: 12px 0 16px; background: #fafafb; }
.totp-qr { display: flex; justify-content: center; }
.totp-qr img { width: 210px; height: 210px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 6px; }
.totp-secret { margin-top: 6px; font: 700 14px/1.5 ui-monospace, Menlo, Consolas, monospace; letter-spacing: .08em; word-break: break-all; background: #fff; border: 1px dashed var(--line-strong); border-radius: 10px; padding: 8px 10px; text-align: center; }
