:root {
  --bg: #faf9f7;
  --bg-soft: #f4f2ef;
  --card: #ffffff;
  --border: #e7e5e4;
  --border-soft: #efedeb;
  --text: #1c1917;
  --muted: #79716b;
  --muted-2: #a8a29e;
  --ink: #1c1917;
  --success: #15803d;
  --wa: #1faa5c;
  --danger: #b91c1c;
  --amber: #b45309;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(28, 25, 23, 0.04), 0 12px 32px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 4px 12px rgba(28, 25, 23, 0.08), 0 24px 60px rgba(28, 25, 23, 0.12);
}

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

::selection { background: #e7e5e4; color: #1c1917; }

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

h1, h2, h3, .g-name, .brand { font-family: "Fraunces", Georgia, serif; font-weight: 500; letter-spacing: -0.015em; }

.container { width: 100%; max-width: 1040px; margin: 0 auto; padding: 0 24px; }

.topbar {
  background: transparent;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-size: 1.25rem; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 10px; letter-spacing: -0.02em; }
.brand .logo {
  width: 34px; height: 34px; flex: 0 0 auto;
  object-fit: cover; border-radius: 22%;
  border: 1px solid var(--border);
}
.brand .dot { color: #8a6f4d; }
.badge-free {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--muted); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 999px; background: var(--card);
}

.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-right .uname { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  border: 0;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active {
  background: var(--ink);
  color: #fff;
}
.menu-btn {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--card);
  font-size: 17px; color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.menu-btn:hover { background: var(--bg-soft); }
.menu-panel {
  position: absolute; right: 24px; top: 70px;
  width: min(400px, calc(100vw - 48px));
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; box-shadow: var(--shadow-lg);
  padding: 24px; z-index: 60;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.menu-panel h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: 14px; }
.menu-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.menu-note-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border-soft);
  display: grid;
  gap: 7px;
}
.menu-note-list li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.menu-note-list li::before { content: "—"; position: absolute; left: 0; color: var(--muted-2); }

.menu-user { font-size: 0.92rem; font-weight: 600; color: var(--text); }
.menu-divider { height: 1px; background: var(--border); margin: 14px 0; border: 0; }
.menu-group { display: flex; flex-direction: column; gap: 2px; }
.menu-item {
  display: block; width: 100%; text-align: left;
  border: 0; background: transparent; font-family: inherit;
  padding: 10px 12px; border-radius: 10px;
  font-size: 0.9rem; color: var(--text); text-decoration: none;
  cursor: pointer; transition: background 0.15s;
}
.menu-item:hover { background: var(--bg-soft); }
.menu-item.danger { color: var(--danger); }

.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 42px; }
.pw-toggle {
  position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border: 0; background: transparent; cursor: pointer;
  color: var(--muted-2); display: flex; align-items: center; justify-content: center;
  transition: color 0.15s;
}
.pw-toggle:hover { color: var(--text); }
.pw-foot { margin-top: 8px; text-align: right; }
.pw-foot a { font-size: 0.82rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.pw-foot a:hover { color: var(--text); }

.hero { text-align: center; padding: 88px 0 48px; max-width: 640px; margin: 0 auto; }
.hero .kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500; line-height: 1.15; letter-spacing: -0.02em;
}
.hero h1 .accent {
  font-style: italic; color: #8a6f4d;
  background-image: linear-gradient(180deg, transparent 88%, rgba(138, 111, 77, 0.35) 88%, rgba(138, 111, 77, 0.35) 96%, transparent 96%);
}
.hero p { color: var(--muted); margin-top: 20px; font-size: 1rem; }

.auth-card {
  max-width: 400px; margin: 8px auto 70px;
  background: transparent;
  padding: 20px 0;
}
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 30px; gap: 4px; }
.auth-tabs button {
  border: 0; background: transparent; padding: 8px 4px;
  font-family: "Fraunces", serif; font-size: 1.05rem; font-weight: 500;
  color: var(--muted-2); cursor: pointer;
  border-bottom: 2px solid var(--border); transition: all 0.2s;
}
.auth-tabs button.active { color: var(--text); border-bottom-color: var(--ink); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  margin-bottom: 7px; color: var(--muted); text-transform: uppercase;
}
input, textarea {
  width: 100%;
  padding: 13px 0;
  border: 0; border-bottom: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.98rem; font-family: inherit;
  background: transparent;
  transition: all 0.2s;
  outline: none; color: var(--text);
}
input::placeholder { color: var(--muted-2); }
input:focus, textarea:focus { border-bottom-color: var(--ink); box-shadow: none; background: transparent; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; cursor: pointer;
  font-family: inherit; font-weight: 600; font-size: 0.92rem;
  padding: 11px 20px; border-radius: 999px;
  transition: all 0.2s; text-decoration: none;
  color: #fff; background: var(--ink);
}
.btn:hover { background: #292524; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(28, 25, 23, 0.14); }
.btn:active { transform: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-block { width: 100%; }
.btn-wa { background: var(--wa); }
.btn-wa:hover { background: #1c9e54; }
.btn-outline { background: var(--card); color: var(--text); border-color: var(--border); }
.btn-outline:hover { background: var(--bg-soft); box-shadow: none; transform: none; }
.btn-danger { background: transparent; color: var(--danger); border-color: #f3d3d1; }
.btn-danger:hover { background: #fdf5f4; box-shadow: none; transform: none; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; border-radius: 999px; }

.auth-switch { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 20px; }
.auth-switch a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.dash-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 44px 0 6px; flex-wrap: wrap; gap: 12px; }
.dash-header h1 { font-size: 1.9rem; font-weight: 500; letter-spacing: -0.02em; }
.dash-header .sub { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  margin-top: 22px;
}
.card h2 { font-size: 1.25rem; font-weight: 500; margin-bottom: 6px; }
.card .hint { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }
.card .hint a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 22px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}
.stat-card .stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card .stat-value { font-size: 1.7rem; font-weight: 600; font-family: "Fraunces", Georgia, serif; margin-top: 4px; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.admin-table th { font-weight: 600; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .muted { color: var(--muted); font-size: 0.82rem; }

.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 14px; align-items: flex-start; font-size: 0.9rem; color: #44403c; }
.step .num {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.step code { font-size: 0.82em; background: var(--bg-soft); padding: 1px 6px; border-radius: 5px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 22px; }
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .menu-panel {
    right: 12px; left: 12px; width: auto;
    top: 64px; padding: 20px;
  }
  .steps { gap: 12px; }
  .step { font-size: 0.85rem; line-height: 1.55; }
  .step .num { width: 24px; height: 24px; font-size: 0.72rem; }
}

.photo {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 1 / 1; cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.photo .check {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(28, 25, 23, 0.55);
  border: 1.5px solid #fff;
  color: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.photo:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(28, 25, 23, 0.12); }
.photo:hover img { transform: scale(1.04); }
.photo.selected { border-color: var(--ink); box-shadow: 0 10px 24px rgba(28, 25, 23, 0.16); }
.photo.selected .check { background: var(--ink); color: #fff; transform: scale(1.08); }

.select-bar {
  position: sticky; bottom: 20px; margin-top: 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--ink); color: #fff;
  border-radius: 999px; padding: 12px 12px 12px 24px;
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.35);
  flex-wrap: wrap;
  animation: fadeIn 0.2s ease;
}
.select-bar .count { font-weight: 500; font-size: 0.98rem; font-family: "Fraunces", serif; }
.select-bar .btn { background: #fff; color: var(--ink); }
.select-bar .btn:hover { background: #f5f5f4; }

.gallery-head { text-align: center; padding: 56px 0 8px; }
.gallery-head h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 500; }
.gallery-head p { color: var(--muted); margin-top: 8px; font-size: 0.92rem; }
.gallery-head .badge-count {
  display: inline-block; margin-top: 14px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: 0.78rem; font-weight: 500;
  padding: 5px 14px; border-radius: 999px;
}

.empty { text-align: center; color: var(--muted); padding: 90px 0; }
.empty .icon { font-size: 40px; margin-bottom: 14px; opacity: 0.5; }
.empty p { font-size: 0.93rem; }
.empty-logo {
  width: 52px; height: 52px;
  object-fit: cover; border-radius: 22%;
  display: block; margin: 0 auto 16px;
  border: 1px solid var(--border);
}

.ad-slot { margin: 34px auto 0; max-width: 940px; }
.ad-placeholder {
  border: 1.5px dashed var(--border);
  border-radius: 12px; padding: 26px;
  text-align: center; color: var(--muted-2);
  font-size: 0.85rem;
}
.ad-tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 8px; background: var(--bg-soft);
  padding: 2px 8px; border-radius: 4px;
}

.spinner {
  width: 34px; height: 34px;
  border: 2.5px solid var(--border);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 70px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-wrap { text-align: center; color: var(--muted); font-size: 0.9rem; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(24, 22, 20, 0.94);
  z-index: 100;
  display: none; align-items: center; justify-content: center;
  flex-direction: column; padding: 20px;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; animation: fadeIn 0.2s ease; }
.lightbox img { max-width: 94vw; max-height: 76vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }
.lightbox .lb-name { color: #e7e5e4; margin-top: 16px; font-size: 0.9rem; text-align: center; word-break: break-all; max-width: 90vw; font-family: "Fraunces", serif; font-style: italic; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.06);
  color: #fff; font-size: 19px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.18); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.06);
  color: #fff; font-size: 16px; cursor: pointer; transition: background 0.2s;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.18); }
.lb-select {
  margin-top: 18px; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 600;
  padding: 11px 26px; border-radius: 999px; font-size: 0.92rem;
  color: #fff; background: var(--ink);
  transition: all 0.2s;
}
.lb-select:hover { transform: translateY(-1px); }
.lb-select.deselect { background: #8a6f4d; }

.gallery-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; margin-top: 26px; }
.g-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px;
  transition: all 0.2s;
}
.g-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.g-item .g-name { font-size: 1.1rem; font-weight: 500; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.g-item .g-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.g-item .g-exp { font-size: 0.74rem; font-weight: 500; padding: 4px 12px; border-radius: 999px; display: inline-block; margin-bottom: 10px; }
.g-exp.ok { background: #f0fdf4; color: var(--success); }
.g-exp.warn { background: #fffbeb; color: var(--amber); }
.g-item .g-link { font-size: 0.78rem; color: #8a6f4d; word-break: break-all; margin-bottom: 16px; display: block; text-decoration: none; font-weight: 500; }
.g-item .g-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.g-item .g-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.confirm-modal { position: fixed; inset: 0; background: rgba(28, 25, 23, 0.55); z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.confirm-modal.open { display: flex; animation: fadeIn 0.18s ease; }
.confirm-box {
  background: var(--card); border-radius: 24px; padding: 30px;
  max-width: 460px; width: 100%;
  box-shadow: var(--shadow-lg);
  max-height: 82vh; overflow: auto;
}
.confirm-box h3 { font-size: 1.3rem; font-weight: 500; margin-bottom: 8px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-soft);
  color: var(--muted); font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.confirm-box .confirm-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.confirm-list {
  max-height: 240px; overflow: auto;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 16px; margin-bottom: 20px;
  font-size: 0.86rem; background: var(--bg-soft);
}
.confirm-list div { padding: 5px 0; border-bottom: 1px dashed var(--border); }
.confirm-list div:last-child { border-bottom: 0; }
.confirm-actions { display: flex; gap: 10px; }

.toast-container { position: fixed; top: 78px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: 999px;
  font-size: 0.86rem; font-weight: 500;
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.25);
  opacity: 0; transform: translateY(-8px);
  transition: all 0.25s; max-width: 340px;
}
.toast-show { opacity: 1; transform: translateY(0); }
.toast-error { background: var(--danger); }
.toast-success { background: #2f7d44; }

.footer { text-align: center; color: var(--muted-2); font-size: 0.8rem; padding: 56px 0 36px; }

.hidden { display: none !important; }

.error-text { color: var(--danger); font-size: 0.85rem; margin-top: 8px; }

.note-badge {
  position: absolute; bottom: 10px; right: 10px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.25);
  pointer-events: none;
}
.lb-note { width: min(520px, 92vw); margin-top: 14px; }
.lb-note textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #f5f5f4;
  padding: 10px 14px;
  font-size: 0.88rem;
  resize: vertical;
}
.lb-note textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.lb-note textarea:focus { border-color: #fff; box-shadow: none; background: rgba(255, 255, 255, 0.12); }
.note-inline { color: var(--muted); }

.sentinel { width: 100%; display: flex; justify-content: center; }
.sentinel .spinner { margin: 30px auto; }

.about-creator { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.about-creator a { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

.folder-pick { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.folder-name { font-size: 0.88rem; color: var(--muted); font-weight: 500; word-break: break-all; }

#selText { border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; background: var(--bg-soft); resize: vertical; }
#selText:focus { border-color: var(--ink); background: var(--card); }

.pair-summary { display: flex; gap: 10px; margin: 18px 0 12px; }
.pair-summary span { font-size: 0.82rem; font-weight: 600; padding: 5px 14px; border-radius: 999px; }
.pair-sum-ok { background: #f0fdf4; color: var(--success); }
.pair-sum-no { background: #fffbeb; color: var(--amber); }
.pair-table {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.pair-row {
  display: grid;
  grid-template-columns: 34px 1.2fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-soft);
}
.pair-row:last-child { border-bottom: 0; }
.pair-head { background: var(--bg-soft); font-weight: 600; color: var(--muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pair-num { color: var(--muted-2); font-size: 0.8rem; }
.pair-sel { font-weight: 500; word-break: break-all; }
.pair-col { word-break: break-all; }
.pair-src { color: var(--muted); }
.pair-missing { color: var(--amber); font-size: 0.8rem; }
.pair-raw.ok { color: var(--success); font-weight: 600; }
.pair-raw.no { color: var(--danger); font-size: 0.8rem; }
@media (max-width: 600px) {
  .pair-row { grid-template-columns: 26px 1fr 1fr; }
  .pair-col:nth-child(3) { display: none; }
}

@media (max-width: 600px) {
  .topbar-inner { height: 58px; }
  .topbar-right .uname { display: none; }
  .hero { padding: 60px 0 36px; }
  .auth-card { padding: 28px 22px; }
  .card { padding: 24px 20px; }
  .select-bar { border-radius: 22px; padding: 12px 14px 12px 18px; justify-content: center; }
  .select-bar .btn { width: 100%; }
}
