:root {
  --bg: #070a12;
  --panel: #0d111d;
  --panel-2: #101728;
  --border: #273354;
  --text: #e7ecfb;
  --muted: #94a0c3;
  --accent: #4a8dff;
  --good: #20d38a;
  --bad: #ff5f70;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, #1a2c56 0%, transparent 35%),
    radial-gradient(circle at 90% 30%, #2a1d5a 0%, transparent 30%),
    var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  padding: 20px 22px 28px;
}

.glass-nav,
.glass-card {
  border-color: var(--border) !important;
  background: rgba(15, 22, 40, 0.65);
  backdrop-filter: blur(8px);
}

.hero-header {
  border-color: #31446b;
  background:
    radial-gradient(circle at 50% -30%, rgba(255, 124, 41, 0.35), rgba(255, 124, 41, 0) 55%),
    rgba(12, 17, 31, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 185, 144, 0.12),
    0 12px 28px rgba(3, 8, 19, 0.55);
}

.header-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #edf2ff;
  font-weight: 600;
  font-size: 1.02rem;
  width: fit-content;
}

.header-center-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-center-nav a {
  display: inline-block;
  color: #d7e1fb;
  font-size: 0.83rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-center-nav a:hover {
  color: #ffffff;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.hero-card,
.feature-card,
.auth-card,
.table-wrap,
.sidebar,
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(160deg, #121b32, #0b1120);
  box-shadow: 0 14px 30px rgba(3, 9, 20, 0.45);
}

.hero-card {
  animation: float-up 0.8s ease both;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -160px;
  background: radial-gradient(circle, rgba(74, 141, 255, 0.2), rgba(74, 141, 255, 0));
  pointer-events: none;
}

.landing {
  position: relative;
}

.landing::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -220px;
  top: 240px;
  background: radial-gradient(circle, rgba(104, 77, 255, 0.22), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-window {
  border: 1px solid #324b77;
  background: rgba(9, 16, 32, 0.75);
  box-shadow: inset 0 1px 0 rgba(134, 170, 255, 0.18);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4c6295;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.hero-desc,
.feature-card p,
.muted-text {
  color: var(--muted);
}

.soft-btn {
  background: linear-gradient(180deg, #4a8dff, #2f67c7);
  border: 1px solid #4e83df;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.soft-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(74, 141, 255, 0.35);
}

.soft-outline {
  border: 1px solid var(--border);
  color: #dbe6ff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.soft-outline:hover {
  background: #182440;
  transform: translateY(-2px);
}

.preview-panel {
  border: 1px solid var(--border);
  background: rgba(12, 19, 36, 0.7);
}

.stat-pill {
  border: 1px solid #2b3c63;
  background: #0f1830;
  border-radius: 12px;
  padding: 10px 12px;
}

.stat-pill .label {
  margin: 0;
  color: #90a4d8;
  font-size: 0.75rem;
}

.stat-pill .value {
  margin: 4px 0 0;
  color: #eaf1ff;
  font-size: 1.05rem;
  font-weight: 700;
}

.preview-line {
  height: 70px;
  border-radius: 12px;
  border: 1px solid #2b3c63;
  background:
    linear-gradient(180deg, rgba(74, 141, 255, 0.14), rgba(74, 141, 255, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(77, 107, 170, 0.15) 0,
      rgba(77, 107, 170, 0.15) 1px,
      transparent 1px,
      transparent 26px
    );
}

.section-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #92aeea;
}

.flow-list {
  margin: 0;
  padding-left: 18px;
  color: #b4c3e8;
  display: grid;
  gap: 8px;
}

.cta-card {
  border: 1px solid #344b75;
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 141, 255, 0.2), transparent 60%),
    linear-gradient(160deg, #121b32, #0b1120);
}

.auth-main {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(450px, 100%);
}

.dark-field {
  border: 1px solid var(--border);
  background: #0c1429;
  color: var(--text);
  outline: none;
}

.dark-field option {
  background: #0c1429;
  color: var(--text);
}

.dark-field:focus {
  outline: none;
  background: #0f1830;
  border-color: #3a5d9d;
  box-shadow: 0 0 0 0.2rem rgba(74, 141, 255, 0.18);
  color: var(--text);
}

.block-btn,
.block-link-btn {
  width: 100%;
}

/* ─────────────────────────────────────────
   NEW DASHBOARD  (db-*)
───────────────────────────────────────── */

.db-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 55% 45% at 75% -5%, rgba(74, 141, 255, 0.13), transparent),
    radial-gradient(ellipse 50% 40% at 0% 65%, rgba(130, 60, 220, 0.11), transparent),
    #060914;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.db-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 100vh;
}

/* ── Sidebar ── */
.db-sidebar {
  display: flex;
  flex-direction: column;
  padding: 18px 12px;
  border-right: 1px solid #182540;
  background: rgba(7, 11, 22, 0.94);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.db-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.97rem;
  color: #e8f0ff;
  padding: 0 4px;
  margin-bottom: 26px;
  text-decoration: none;
}

.db-nav-group {
  margin-bottom: 22px;
}

.db-nav-label {
  margin: 0 0 6px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #384f7a;
}

.db-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #6a82b4;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.db-nav-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.db-nav-item:hover {
  color: #b8ccf0;
  background: rgba(255, 255, 255, 0.05);
}

.db-nav-item:hover svg {
  opacity: 1;
}

.db-nav-item.active {
  color: #93b8ff;
  background: rgba(74, 141, 255, 0.12);
  font-weight: 600;
}

.db-nav-item.active svg {
  color: #4a8dff;
  opacity: 1;
}

.db-nav-badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  color: #4a8dff;
  background: rgba(74, 141, 255, 0.14);
  border-radius: 99px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.db-sidebar-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #182540;
}

.db-user-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 4px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.db-user-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.db-avatar {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #4a8dff, #2f67c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}

.db-user-info {
  flex: 1;
  min-width: 0;
}

.db-user-name {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 600;
  color: #cddaff;
}

.db-user-role {
  margin: 0;
  font-size: 0.7rem;
  color: #45608c;
}

.db-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #20d38a;
  box-shadow: 0 0 6px #20d38a;
  flex-shrink: 0;
}

/* ── Main content ── */
.db-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  min-width: 0;
}

/* ── Topbar ── */
.db-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid #1a2944;
  border-radius: 14px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(74, 141, 255, 0.07), transparent),
    linear-gradient(150deg, #0f1829, #090f1e);
}

.db-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.db-topbar-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(74, 141, 255, 0.1);
  border: 1px solid rgba(74, 141, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a8dff;
  flex-shrink: 0;
}

.db-page-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #dce8ff;
  line-height: 1.2;
}

.db-page-sub {
  margin: 2px 0 0;
  font-size: 0.76rem;
  color: #3f5880;
}

.db-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.db-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 99px;
  background: rgba(32, 211, 138, 0.09);
  border: 1px solid rgba(32, 211, 138, 0.2);
  font-size: 0.74rem;
  font-weight: 600;
  color: #20d38a;
}

.db-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #20d38a;
  box-shadow: 0 0 6px #20d38a;
  animation: db-pulse 2.2s ease-in-out infinite;
}

@keyframes db-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.db-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 0.81rem;
  font-weight: 600;
  color: #8aaae0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #263550;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.db-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #c4d8ff;
  border-color: #344868;
}

.db-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 0.81rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(170deg, #4a8dff, #2a61cc);
  border: 1px solid #3a73e0;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.db-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 141, 255, 0.35);
}

/* ── Stat Cards ── */
.db-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.db-stat-card {
  border-radius: 14px;
  padding: 16px 16px 18px;
  border: 1px solid #1a2944;
  background: linear-gradient(145deg, #0f1828, #090e1c);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.db-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.db-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 14px 14px 0 0;
}

.db-stat-card.blue::before  { background: linear-gradient(90deg, #4a8dff 0%, #84b5ff 100%); }
.db-stat-card.gold::before  { background: linear-gradient(90deg, #f5a623 0%, #fcd46e 100%); }
.db-stat-card.purple::before { background: linear-gradient(90deg, #a855f7 0%, #c77dff 100%); }
.db-stat-card.green::before { background: linear-gradient(90deg, #20d38a 0%, #6ee7b7 100%); }

.db-stat-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 99px;
  pointer-events: none;
}

.db-stat-card.blue::after   { background: radial-gradient(circle, rgba(74,141,255,0.1), transparent 70%); }
.db-stat-card.gold::after   { background: radial-gradient(circle, rgba(245,166,35,0.1), transparent 70%); }
.db-stat-card.purple::after { background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%); }
.db-stat-card.green::after  { background: radial-gradient(circle, rgba(32,211,138,0.1), transparent 70%); }

.db-stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.db-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.db-stat-icon.blue   { background: rgba(74,141,255,0.14);  color: #4a8dff; }
.db-stat-icon.gold   { background: rgba(245,166,35,0.14);  color: #f5a623; }
.db-stat-icon.purple { background: rgba(168,85,247,0.14);  color: #a855f7; }
.db-stat-icon.green  { background: rgba(32,211,138,0.14);  color: #20d38a; }

.db-stat-label {
  margin: 0;
  font-size: 0.71rem;
  font-weight: 600;
  color: #3e5880;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.db-stat-value {
  margin: 6px 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: #dce8ff;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ── Toolbar ── */
.db-toolbar {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid #1a2944;
  border-radius: 13px;
  background: linear-gradient(150deg, #0d1526, #08101e);
}

.db-search-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.db-search-icon {
  position: absolute;
  left: 11px;
  color: #374f78;
  pointer-events: none;
  flex-shrink: 0;
}

.db-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #232f4a;
  border-radius: 9px;
  padding: 9px 12px 9px 34px;
  color: #c8d8ff;
  font-size: 0.84rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.db-search-input::placeholder { color: #2e4265; }

.db-search-input:focus {
  border-color: #2e5099;
  box-shadow: 0 0 0 3px rgba(74, 141, 255, 0.1);
}

.db-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #232f4a;
  border-radius: 9px;
  padding: 9px 12px;
  color: #7a98cc;
  font-size: 0.84rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  min-width: 140px;
  transition: border-color 0.15s;
}

.db-select:focus { border-color: #2e5099; }
.db-select option { background: #0c1429; color: #c8d8ff; }

/* ── Table ── */
.db-table-section {
  border: 1px solid #1a2944;
  border-radius: 14px;
  background: linear-gradient(160deg, #0d1526, #08101e);
  overflow: hidden;
  flex: 1;
}

.db-table-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px 11px;
  border-bottom: 1px solid #131f38;
}

.db-table-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a6499;
}

.db-table-heading {
  font-size: 0.88rem;
  font-weight: 700;
  color: #bdd0f5;
}

.db-count-pill {
  font-size: 0.73rem;
  font-weight: 600;
  color: #4a8dff;
  background: rgba(74, 141, 255, 0.1);
  border: 1px solid rgba(74, 141, 255, 0.18);
  border-radius: 99px;
  padding: 2px 9px;
}

.db-table-scroll { overflow-x: auto; }

.db-table {
  width: 100%;
  border-collapse: collapse;
}

.db-table th {
  padding: 9px 16px;
  text-align: left;
  font-size: 0.69rem;
  font-weight: 700;
  color: #344d74;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid #111e36;
  white-space: nowrap;
}

.db-table td {
  padding: 11px 16px;
  font-size: 0.86rem;
  color: #8aabd8;
  border-bottom: 1px solid #0e1a30;
  white-space: nowrap;
}

.db-table tbody tr:last-child td { border-bottom: none; }

.db-table tbody tr {
  transition: background 0.12s;
}

.db-table tbody tr:hover td {
  background: rgba(74, 141, 255, 0.04);
  color: #b0c8ee;
}

/* Player cell */
.db-player-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.db-row-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.db-player-name {
  font-weight: 600;
  color: #c4d8ff;
  font-size: 0.86rem;
}

/* Badges */
.db-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 600;
}

.db-status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 99px;
  flex-shrink: 0;
}

.db-status-badge.online {
  background: rgba(32, 211, 138, 0.1);
  color: #20d38a;
  border: 1px solid rgba(32, 211, 138, 0.22);
}

.db-status-badge.online::before {
  background: #20d38a;
  box-shadow: 0 0 5px #20d38a;
}

.db-status-badge.offline {
  background: rgba(255, 95, 112, 0.08);
  color: #ff7080;
  border: 1px solid rgba(255, 95, 112, 0.18);
}

.db-status-badge.offline::before {
  background: #ff7080;
}

.db-fruit-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.18);
  color: #b57fff;
}

.db-race-text {
  font-size: 0.82rem;
  color: #607aaa;
}

.db-level-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: #8aa8d8;
}

.db-num-text {
  font-size: 0.86rem;
  font-weight: 500;
  color: #7090bb;
  font-variant-numeric: tabular-nums;
}

/* ── Rich table cells ── */

/* Account column */
.db-tc-account {
  min-width: 170px;
  padding: 10px 14px !important;
  vertical-align: top !important;
}

.db-acct-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.db-acct-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  flex-shrink: 0;
  margin-top: 5px;
}

.db-acct-dot.online  { background: #20d38a; box-shadow: 0 0 6px #20d38a; }
.db-acct-dot.offline { background: #ff6b7a; }

.db-acct-body { min-width: 0; }

.db-acct-name {
  font-size: 0.87rem;
  font-weight: 700;
  color: #c4d8ff;
  line-height: 1.25;
  white-space: nowrap;
}

.db-acct-meta {
  font-size: 0.72rem;
  color: #3b5278;
  margin: 2px 0 5px;
}

.db-acct-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.db-pill {
  font-size: 0.67rem;
  font-weight: 600;
  color: #6888b5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #1f3050;
  border-radius: 5px;
  padding: 1px 6px;
  white-space: nowrap;
}

.db-acct-time {
  font-size: 0.68rem;
  color: #293f60;
  margin-top: 5px;
}

/* Details / DF columns */
.db-tc-details {
  min-width: 150px;
  padding: 10px 14px !important;
  vertical-align: top !important;
}

.db-kv {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
}

.db-kv:last-child { margin-bottom: 0; }

.db-kv-k {
  font-size: 0.7rem;
  color: #334e75;
  min-width: 58px;
  flex-shrink: 0;
}

.db-kv-v {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7a9dd0;
}

.db-kv-purple { color: #b57fff; }

.db-yes { color: #20d38a; font-weight: 700; font-size: 0.85rem; }
.db-no  { color: #ff6b7a; font-weight: 700; font-size: 0.85rem; }

/* Item columns */
.db-tc-items {
  min-width: 80px;
  padding: 10px 10px !important;
  vertical-align: top !important;
}

.db-inv-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.db-inv-empty {
  font-size: 0.8rem;
  color: #1f3050;
}

.db-inv-slot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  padding: 0 7px;
  border-radius: 6px;
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid;
  cursor: default;
  white-space: nowrap;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.db-inv-slot:hover {
  transform: translateY(-1px);
  filter: brightness(1.2);
}

.db-inv-more {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4a7fe5;
  background: rgba(74,127,229,0.10);
  border: 1px dashed #2e4265;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.db-inv-more:hover {
  background: rgba(74,127,229,0.22);
  color: #7aaaff;
}

/* ── Inventory Modal ── */
.inv-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.inv-modal-backdrop.open {
  display: flex;
}
.inv-modal {
  background: #0d1929;
  border: 1px solid #1e3250;
  border-radius: 16px;
  width: 500px;
  max-width: 95vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  animation: modal-in 0.2s ease;
}
@keyframes modal-in {
  from { opacity:0; transform: scale(0.95) translateY(8px); }
  to   { opacity:1; transform: scale(1)    translateY(0); }
}
.inv-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #1e3250;
}
.inv-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.95rem;
}
.inv-modal-count {
  font-size: 0.75rem;
  font-weight: 500;
  color: #4a7fe5;
  background: rgba(74,127,229,0.15);
  border: 1px solid #2e4265;
  border-radius: 20px;
  padding: 1px 8px;
}
.inv-modal-close {
  background: none;
  border: none;
  color: #4a7fe5;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  transition: background 0.15s;
}
.inv-modal-close:hover { background: rgba(74,127,229,0.15); }
.inv-modal-body {
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.inv-modal-body::-webkit-scrollbar       { width: 4px; }
.inv-modal-body::-webkit-scrollbar-track { background: transparent; }
.inv-modal-body::-webkit-scrollbar-thumb { background: #1e3250; border-radius: 4px; }
.inv-modal-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid;
}
.inv-modal-item-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 600;
}
.inv-modal-item-qty {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.75;
}
.inv-modal-item-rarity {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* ── Rarity colours ── */
.db-r-common    { background: rgba(75,85,99,0.14);     border-color: #4b5563;  color: #9ca3af; }
.db-r-uncommon  { background: rgba(22,163,74,0.14);    border-color: #16a34a;  color: #4ade80; }
.db-r-rare      { background: rgba(37,99,235,0.14);    border-color: #2563eb;  color: #60a5fa; }
.db-r-legendary { background: rgba(168,85,247,0.18);   border-color: #a855f7;  color: #e879f9; }
.db-r-mythical  { background: rgba(185,28,28,0.18);    border-color: #b91c1c;  color: #f87171; }
.db-r-epic      { background: rgba(168,85,247,0.18);   border-color: #a855f7;  color: #e879f9; }

.db-inv-qty {
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0.75;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .db-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .db-layout { grid-template-columns: 1fr; }
  .db-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 14px;
    border-right: none;
    border-bottom: 1px solid #182540;
  }
  .db-sidebar-footer { display: none; }
  .db-nav-group { margin-bottom: 0; }
  .db-brand { margin-bottom: 0; }
  .db-main { padding: 14px; }
}

@media (max-width: 580px) {
  .db-cards-grid { grid-template-columns: 1fr 1fr; }
  .db-topbar { flex-direction: column; align-items: flex-start; }
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 950px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .landing::before {
    display: none;
  }

  .app {
    grid-template-columns: 1fr;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 10px;
  }

  .dashboard-toolbar {
    flex-direction: column;
  }

  .sidebar {
    border-radius: 16px;
    border: 1px solid var(--border);
    margin: 12px;
  }

  .toolbar {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .header-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-center-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-actions {
    justify-self: start;
  }
}

/* ═══════════════════════════════════════════
   LOGIN PAGE  (lp-*)
═══════════════════════════════════════════ */

.lp-body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(ellipse 55% 50% at 20% 40%, rgba(74,141,255,0.11), transparent),
    radial-gradient(ellipse 50% 45% at 80% 60%, rgba(130,60,220,0.09), transparent),
    #060914;
  color: #e7ecfb;
  min-height: 100vh;
}

.lp-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
  gap: 16px;
}

/* ── Card ── */
.lp-card {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #1a2944;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
}

/* ── Left panel ── */
.lp-left {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-right: 1px solid #1a2944;
  background:
    radial-gradient(ellipse 90% 60% at 20% 10%, rgba(74,141,255,0.16), transparent),
    linear-gradient(160deg, #0f1f3e, #080e1f);
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.97rem;
  color: #e8f0ff;
  text-decoration: none;
}

.lp-tagline-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-tagline {
  margin: 0 0 10px;
  font-size: 1.7rem;
  font-weight: 800;
  color: #dce8ff;
  line-height: 1.25;
}

.lp-tagline span { color: #4a8dff; }

.lp-tagline-sub {
  margin: 0;
  font-size: 0.83rem;
  color: #3d5578;
  line-height: 1.65;
}

/* Features */
.lp-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: #6888b5;
}

.lp-feat-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(32,211,138,0.1);
  border: 1px solid rgba(32,211,138,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20d38a;
  flex-shrink: 0;
}

/* Stats */
.lp-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 10px;
  padding-top: 18px;
  border-top: 1px solid #1a2944;
}

.lp-stat-val {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #bdd0f5;
  letter-spacing: -0.02em;
}

.lp-stat-label {
  margin: 3px 0 0;
  font-size: 0.7rem;
  color: #2e4265;
}

/* ── Right panel ── */
.lp-right {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(160deg, #0b1220, #070c1a);
}

.lp-form-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-form-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(74,141,255,0.1);
  border: 1px solid rgba(74,141,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a8dff;
  margin-bottom: 6px;
}

.lp-form-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #dce8ff;
  line-height: 1.25;
}

.lp-form-sub {
  margin: 0;
  font-size: 0.78rem;
  color: #2e4265;
}

/* Form */
.lp-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.lp-field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lp-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: #4a6499;
}

.lp-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.lp-input-icon {
  position: absolute;
  left: 11px;
  color: #2e4265;
  pointer-events: none;
  flex-shrink: 0;
}

.lp-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid #1e2d4d;
  border-radius: 10px;
  padding: 10px 38px 10px 36px;
  color: #c8d8ff;
  font-size: 0.86rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.lp-input::placeholder { color: #233044; }

.lp-input:focus {
  border-color: #2e5099;
  box-shadow: 0 0 0 3px rgba(74,141,255,0.1);
  background: rgba(255,255,255,0.06);
}

.lp-eye-btn {
  position: absolute;
  right: 10px;
  color: #2e4265;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.lp-eye-btn:hover { color: #7a98cc; }

/* Row */
.lp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-remember {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  color: #3d5578;
  cursor: pointer;
  user-select: none;
}

.lp-remember input[type="checkbox"] {
  accent-color: #4a8dff;
  width: 13px;
  height: 13px;
  cursor: pointer;
}

.lp-forgot {
  font-size: 0.77rem;
  color: #4a8dff;
  text-decoration: none;
  transition: color 0.15s;
}

.lp-forgot:hover { color: #84b4ff; }

/* Error */
.lp-error {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.77rem;
  color: #ff7080;
  background: rgba(255,95,112,0.08);
  border: 1px solid rgba(255,95,112,0.18);
  border-radius: 8px;
  padding: 7px 10px;
  margin: 0;
}

/* Sign in button */
.lp-sign-btn {
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(170deg, #4a8dff, #2a61cc);
  border: 1px solid #3a73e0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s ease;
  margin-top: 2px;
}

.lp-sign-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(74,141,255,0.4);
}

.lp-sign-btn:disabled { opacity: 0.7; cursor: not-allowed; }

@keyframes lp-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Divider */
.lp-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a2640;
  font-size: 0.74rem;
}

.lp-divider::before,
.lp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1a2640;
}

/* Demo button */
.lp-demo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #6888b5;
  background: rgba(255,255,255,0.03);
  border: 1px solid #1a2640;
  text-decoration: none;
  transition: all 0.15s ease;
}

.lp-demo-btn:hover {
  background: rgba(255,255,255,0.06);
  color: #b0c8ee;
  border-color: #2a3d5c;
}

/* Footer */
.lp-footer-text {
  text-align: center;
  font-size: 0.74rem;
  color: #233044;
  margin: 0;
}

.lp-footer-text a {
  color: #4a8dff;
  text-decoration: none;
}

.lp-footer-text a:hover { color: #84b4ff; }

/* Back link */
.lp-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.77rem;
  color: #2e4265;
  text-decoration: none;
  transition: color 0.15s;
}

.lp-back:hover { color: #7a98cc; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .lp-left  { display: none; }
  .lp-card  { grid-template-columns: 1fr; }
  .lp-right { padding: 32px 22px; }
}

/* ═══════════════════════════════════════════
   SHOP PAGE  (shop-*)
═══════════════════════════════════════════ */

/* ── Hero ── */
.shop-hero {
  border: 1px solid #1e2d4d;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(74,141,255,0.14), transparent),
    linear-gradient(160deg, #0d1628, #080f1e);
  text-align: center;
}

.shop-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4a8dff;
  background: rgba(74,141,255,0.1);
  border: 1px solid rgba(74,141,255,0.22);
  border-radius: 99px;
  padding: 3px 12px;
  margin-bottom: 16px;
}

.shop-hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #dce8ff;
  line-height: 1.15;
}

.shop-hero-sub {
  margin: 0;
  font-size: 0.95rem;
  color: #4a6499;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Section header ── */
.shop-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.shop-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,141,255,0.1);
  border: 1px solid rgba(74,141,255,0.2);
  color: #4a8dff;
  flex-shrink: 0;
}

.shop-section-icon.gold {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.2);
  color: #f5a623;
}

.shop-section-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #374f78;
  text-transform: uppercase;
}

.shop-section-title {
  margin: 4px 0 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #c4d8ff;
}

/* ── Plans grid ── */
.shop-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.shop-plan-card {
  border: 1px solid #1e2d4d;
  border-radius: 18px;
  padding: 24px 22px 22px;
  background: linear-gradient(160deg, #0e1728, #090f1e);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.shop-plan-card.featured {
  border-color: #2f5099;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(74,141,255,0.18), transparent),
    linear-gradient(160deg, #0f1d3a, #090f20);
  box-shadow: 0 0 0 1px #2f5099, 0 20px 50px rgba(74,141,255,0.12);
}

.shop-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #4a8dff, #2f67c7);
  border-radius: 99px;
  padding: 3px 14px;
  white-space: nowrap;
}

.shop-plan-top { display: flex; flex-direction: column; gap: 8px; }

.shop-plan-name {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #7a98cc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-plan-card.featured .shop-plan-name { color: #7ab0ff; }

.shop-plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.shop-price-amt {
  font-size: 2rem;
  font-weight: 800;
  color: #dce8ff;
  line-height: 1;
}

.shop-price-per {
  font-size: 0.82rem;
  color: #3d5578;
}

.shop-plan-desc {
  margin: 0;
  font-size: 0.82rem;
  color: #3d5578;
  line-height: 1.55;
}

/* Feature list */
.shop-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.shop-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.shop-feat.yes { color: #7a98cc; }
.shop-feat.no  { color: #2a3d5c; }
.shop-feat.yes svg { color: #20d38a; flex-shrink: 0; }
.shop-feat.no  svg { color: #2a3d5c; flex-shrink: 0; }

/* Plan buttons */
.shop-plan-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 11px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}

.shop-plan-btn.primary {
  background: linear-gradient(170deg, #4a8dff, #2a61cc);
  border: 1px solid #3a73e0;
  color: #fff;
}

.shop-plan-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(74,141,255,0.35);
}

.shop-plan-btn.outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid #263550;
  color: #8aaae0;
}

.shop-plan-btn.outline:hover {
  background: rgba(255,255,255,0.08);
  color: #c4d8ff;
}

/* ── Marketplace toolbar ── */
.shop-mkt-toolbar {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid #1a2944;
  border-radius: 13px;
  background: linear-gradient(150deg, #0d1526, #08101e);
  margin-bottom: 16px;
}

/* ── Account cards grid ── */
.shop-acct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.shop-acct-card {
  border: 1px solid #1a2944;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(160deg, #0e1728, #090f1e);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-acct-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}

.shop-hot-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #f97316;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 99px;
  padding: 2px 8px;
}

.shop-verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #20d38a;
  background: rgba(32,211,138,0.1);
  border: 1px solid rgba(32,211,138,0.22);
  border-radius: 99px;
  padding: 2px 8px;
}

/* Fruit bar */
.shop-acct-fruit-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid;
  margin-top: 6px;
}

.shop-fruit-orb {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.shop-fruit-name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.shop-fruit-rarity {
  margin: 3px 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 1px 6px;
  display: inline-block;
}

/* Account stats */
.shop-acct-username {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c4d8ff;
  letter-spacing: 0.02em;
}

.shop-acct-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}

.shop-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.shop-stat-k {
  font-size: 0.71rem;
  color: #334e75;
}

.shop-stat-v {
  font-size: 0.78rem;
  font-weight: 600;
  color: #7a9dd0;
}

/* Extras tags */
.shop-acct-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.shop-extra-tag {
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: 5px;
  padding: 2px 7px;
  border: 1px solid;
}

.shop-extra-tag.sword   { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.28); color: #60a5fa; }
.shop-extra-tag.melee   { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.28); color: #a78bfa; }

/* Price + CTA */
.shop-acct-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #111e36;
}

.shop-price-tag {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.shop-price-usd {
  font-size: 1.3rem;
  font-weight: 800;
  color: #dce8ff;
}

.shop-price-label {
  font-size: 0.72rem;
  color: #3d5578;
  font-weight: 600;
}

.shop-buy-btn {
  padding: 7px 16px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(170deg, #4a8dff, #2a61cc);
  border: 1px solid #3a73e0;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.shop-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(74,141,255,0.35);
}

/* Disclaimer */
.shop-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: #2a3d5c;
}

/* ── Responsive shop ── */
@media (max-width: 900px) {
  .shop-plans-grid { grid-template-columns: 1fr; }
  .shop-acct-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .shop-acct-grid  { grid-template-columns: 1fr; }
  .shop-mkt-toolbar { flex-direction: column; }
}
