/* ===================================================
   SOLTokenBoost - Premium Visual Enhancement
   Visual-only redesign: no backend logic modified.
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800;14..32,900&display=swap');

/* ─── Design Tokens ─── */
:root {
  --boost-bg-0: #020617;
  --boost-bg-1: #070e1d;
  --boost-bg-2: #0c1526;

  --boost-surface: rgba(8, 14, 32, 0.78);
  --boost-surface-2: rgba(16, 26, 50, 0.62);
  --boost-surface-raised: rgba(12, 20, 42, 0.88);

  --boost-border: rgba(148, 163, 184, 0.13);
  --boost-border-subtle: rgba(148, 163, 184, 0.07);
  --boost-border-accent: rgba(168, 85, 247, 0.32);

  --boost-text: #eef2ff;
  --boost-text-soft: rgba(188, 204, 232, 0.82);
  --boost-text-muted: rgba(135, 155, 190, 0.62);

  --boost-accent-a: #a855f7;
  --boost-accent-b: #7c3aed;
  --boost-accent-c: #3b82f6;
  --boost-accent-d: #c084fc;

  --glow-purple: rgba(124, 58, 237, 0.22);
  --glow-blue: rgba(59, 130, 246, 0.18);

  --t-fast: 0.15s ease;
  --t-med: 0.22s ease;
  --t-slow: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Base ─── */
html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  color: var(--boost-text);
  background-color: var(--boost-bg-0);
  background-image:
    radial-gradient(ellipse 1400px 900px at -8% -18%,  rgba(124, 58, 237, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 1000px 750px at 112%  -8%,  rgba(59, 130, 246, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse  700px 500px at  50%  42%,  rgba(124, 58, 237, 0.04) 0%, transparent 65%),
    linear-gradient(175deg, var(--boost-bg-0) 0%, #05091a 28%, var(--boost-bg-1) 58%, var(--boost-bg-2) 100%);
  background-attachment: fixed;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.028em;
  line-height: 1.18;
  font-weight: 700;
}

p, li {
  color: var(--boost-text-soft);
  line-height: 1.72;
}

/* ─── Shared Vocabulary ─── */
.web3-section-title {
  letter-spacing: -0.028em;
  line-height: 1.15;
}

/* Premium kicker badge */
.web3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(168, 85, 247, 0.32);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(59, 130, 246, 0.08));
  color: rgba(196, 138, 252, 0.95);
  border-radius: 999px;
  padding: 0.3rem 0.95rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

/* Premium glass card */
.web3-card {
  background: linear-gradient(160deg, rgba(12, 20, 44, 0.90) 0%, rgba(8, 14, 30, 0.74) 100%);
  border: 1px solid var(--boost-border);
  border-radius: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(2, 6, 23, 0.50),
    0 2px 10px rgba(2, 6, 23, 0.30);
  backdrop-filter: blur(18px) saturate(1.3);
}

/* Shared button base */
.web3-btn-primary,
.web3-btn-secondary {
  min-height: 2.85rem;
  border-radius: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  transition: transform var(--t-med), box-shadow var(--t-med), filter var(--t-fast);
}

.web3-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 48%, #3b82f6 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 26px -8px rgba(124, 58, 237, 0.70);
}

.web3-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 32px -8px rgba(124, 58, 237, 0.80);
  filter: brightness(1.06);
}

.web3-btn-secondary {
  color: rgba(238, 242, 255, 0.95);
  background: rgba(12, 20, 44, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.26);
  backdrop-filter: blur(10px);
}

.web3-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(18, 30, 62, 0.82);
  border-color: rgba(168, 85, 247, 0.42);
  box-shadow: 0 8px 22px -8px rgba(168, 85, 247, 0.28);
}

/* Form fields */
.nft-field {
  border: 1px solid rgba(148, 163, 184, 0.20) !important;
  background: rgba(8, 14, 32, 0.78) !important;
  color: var(--boost-text) !important;
  border-radius: 0.85rem !important;
  font-family: 'Inter', sans-serif !important;
}

.nft-field::placeholder {
  color: rgba(135, 155, 190, 0.62) !important;
}

.nft-field:focus {
  border-color: rgba(168, 85, 247, 0.72) !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.14), 0 0 18px rgba(168, 85, 247, 0.07) !important;
  outline: none;
}

/* ─── Header ─── */
.boost-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.09) !important;
  background: rgba(2, 6, 23, 0.90) !important;
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  box-shadow:
    inset 0 -1px 0 rgba(148, 163, 184, 0.06),
    0 8px 36px rgba(2, 6, 23, 0.55);
  position: sticky;
}

/* Animated top rail */
.boost-header-gradient-bar {
  height: 2px;
  background: linear-gradient(90deg,
    transparent  0%,
    #6d28d9     12%,
    #a855f7     28%,
    #c084fc     44%,
    #3b82f6     58%,
    #a855f7     72%,
    #6d28d9     86%,
    transparent 100%);
  background-size: 200% 100%;
  animation: boostHeaderRail 5s linear infinite;
}

.boost-header::before { content: none; }

@keyframes boostHeaderRail {
  0%   { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

.boost-header-inner { gap: 0.9rem; }

.boost-logo-text {
  font-weight: 700;
  letter-spacing: -0.022em;
  font-size: 1.05rem;
}

/* Nav pill container */
.boost-header-nav {
  border: 1px solid rgba(148, 163, 184, 0.10) !important;
  background: rgba(8, 14, 32, 0.62) !important;
  backdrop-filter: blur(14px);
}

/* Nav links */
.boost-nav-link {
  display: block;
  padding: 0.44rem 0.92rem;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 0.65rem;
  transition: all var(--t-med);
}

.nav-link {
  color: rgba(188, 204, 232, 0.80) !important;
}

.nav-link:hover {
  color: #fff !important;
  background: rgba(22, 34, 66, 0.75) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
}

.nav-link-active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(59, 130, 246, 0.18)) !important;
  border-color: rgba(168, 85, 247, 0.38) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 14px rgba(168, 85, 247, 0.10);
}

.nav-link-active:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.38), rgba(59, 130, 246, 0.26)) !important;
}

/* Wallet CTA */
.boost-wallet-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 8px 26px -10px rgba(124, 58, 237, 0.82),
    0 0 0 1px rgba(124, 58, 237, 0.14);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.boost-wallet-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 30px -10px rgba(124, 58, 237, 0.92),
    0 0 0 1px rgba(168, 85, 247, 0.24);
  filter: brightness(1.08);
}

/* ─── Hero ─── */
.boost-hero {
  margin-top: 0.5rem;
  position: relative;
  overflow: visible;
}

/* Ambient glow above hero */
.boost-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(ellipse,
    rgba(124, 58, 237, 0.16) 0%,
    rgba(59, 130, 246, 0.08) 45%,
    transparent 72%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.boost-hero > * { position: relative; z-index: 1; }

/* Hero kicker */
.boost-hero .inline-flex.rounded-full {
  border-color: rgba(168, 85, 247, 0.36) !important;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(59, 130, 246, 0.09)) !important;
  backdrop-filter: blur(10px);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.70rem;
  text-transform: uppercase;
  color: rgba(196, 138, 252, 0.95) !important;
  padding: 0.4rem 1.1rem !important;
}

/* ─── CTA Buttons ─── */
.boost-btn-primary,
.boost-btn-secondary {
  min-height: 2.85rem;
  border-radius: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  transition: transform var(--t-med), box-shadow var(--t-med), filter var(--t-fast);
}

.boost-btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.26) !important;
  backdrop-filter: blur(8px);
}

.boost-btn-secondary:hover {
  border-color: rgba(168, 85, 247, 0.42) !important;
  box-shadow: 0 8px 22px -8px rgba(168, 85, 247, 0.25) !important;
}

/* ─── Misc Utility Cards ─── */
.boost-availability-card {
  border-color: rgba(168, 85, 247, 0.26) !important;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.36), 0 0 0 1px rgba(168, 85, 247, 0.10);
}

.boost-token-card {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.44);
}

.boost-token-card h1,
.boost-token-card h2,
.boost-token-card h3 {
  letter-spacing: -0.025em;
}

.boost-contact-card {
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.40);
}

.boost-contact-form label {
  color: rgba(188, 204, 232, 0.90) !important;
  font-weight: 500;
}

/* Generic bordered cards */
.rounded-2xl.border,
.rounded-3xl.border,
.rounded-xl.border {
  border-color: var(--boost-border);
}

.bg-surface,
.bg-surface\/80,
.bg-surface\/60,
.bg-surface\/50,
.bg-surface\/40,
.bg-charcoal\/50 {
  background-color: var(--boost-surface) !important;
}

[class*="bg-gradient-to-br"][class*="from-surface"] {
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.36);
}

/* Legal content */
main.max-w-4xl section p,
main.max-w-4xl > div > div > p,
main.max-w-5xl section p {
  line-height: 1.78;
}

/* ─── Gradient Buttons (Tailwind override) ─── */
a[class*="from-purple-600"][class*="to-purple-500"],
button[class*="from-purple-600"][class*="to-purple-500"],
a[class*="from-blue-600"][class*="to-blue-500"],
button[class*="from-blue-600"][class*="to-blue-500"] {
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-weight: 700;
  transition: transform var(--t-med), box-shadow var(--t-med), filter var(--t-fast);
}

a[class*="from-purple-600"][class*="to-purple-500"]:hover,
button[class*="from-purple-600"][class*="to-purple-500"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.08);
  box-shadow: 0 14px 30px -8px rgba(124, 58, 237, 0.72) !important;
}

a[class*="from-blue-600"][class*="to-blue-500"]:hover,
button[class*="from-blue-600"][class*="to-blue-500"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.08) saturate(1.08);
  box-shadow: 0 14px 30px -8px rgba(59, 130, 246, 0.62) !important;
}

/* ─── Inputs ─── */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
input[type="file"],
textarea {
  border-color: rgba(148, 163, 184, 0.18) !important;
  background: rgba(8, 14, 32, 0.75) !important;
  color: var(--boost-text) !important;
  font-family: 'Inter', sans-serif !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(135, 155, 190, 0.60) !important;
}

input:focus,
textarea:focus {
  border-color: rgba(168, 85, 247, 0.68) !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12), 0 0 18px rgba(168, 85, 247, 0.06) !important;
  outline: none;
}

/* ─── Modals ─── */
#boostModal > div,
#addTokenModal > div[role="dialog"] {
  border-color: rgba(148, 163, 184, 0.14) !important;
  background: linear-gradient(175deg, rgba(10, 18, 42, 0.97), rgba(6, 12, 28, 0.93)) !important;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.65), 0 0 0 1px rgba(168, 85, 247, 0.07);
  backdrop-filter: blur(28px);
}

/* ─── Token article cards ─── */
article[data-mint] {
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

article[data-mint]:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.38) !important;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.44), 0 0 0 1px rgba(168, 85, 247, 0.14);
}

/* Search bar */
.boost-search-form input[type="search"] {
  min-height: 46px;
  border-radius: 0.9rem;
}

/* ─── Footer ─── */
.boost-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.09) !important;
  background: linear-gradient(175deg, transparent, rgba(2, 6, 23, 0.72)) !important;
  position: relative;
}

/* Decorative gradient line */
.boost-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.40), rgba(59, 130, 246, 0.28), transparent);
  pointer-events: none;
}

.boost-footer a {
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.boost-footer h3 {
  color: rgba(238, 242, 255, 0.72);
  font-weight: 600;
  letter-spacing: 0.07em;
  font-size: 0.68rem;
}

.boost-footer ul a {
  color: rgba(188, 204, 232, 0.52);
  font-size: 0.875rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.boost-footer ul a:hover {
  color: rgba(255, 255, 255, 0.88);
  padding-left: 4px;
}

/* ─── Step number badges ─── */
.boost-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.30), rgba(59, 130, 246, 0.20));
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: rgba(196, 138, 252, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

/* ─── Section divider ornament ─── */
.boost-section-ornament {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--boost-accent-b), var(--boost-accent-c));
  border-radius: 999px;
  margin: 0.6rem auto 0;
  opacity: 0.55;
}

.boost-admin-shell {
  position: relative;
  overflow: hidden;
}

.boost-admin-shell::before,
.boost-admin-shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(18px);
}

.boost-admin-shell::before {
  top: 2rem;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 68%);
}

.boost-admin-shell::after {
  top: 6rem;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, transparent 70%);
}

.boost-admin-inner {
  position: relative;
  z-index: 1;
}

.boost-admin-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 32%),
    linear-gradient(160deg, rgba(12, 20, 44, 0.94) 0%, rgba(8, 14, 30, 0.86) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 60px rgba(2, 6, 23, 0.44);
}

.boost-admin-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 85%);
  pointer-events: none;
}

.boost-admin-hero > * {
  position: relative;
  z-index: 1;
}

.boost-admin-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 92%);
}

.boost-admin-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.26);
  background: rgba(124, 58, 237, 0.12);
  color: rgba(216, 180, 254, 0.96);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boost-admin-panel {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.5rem;
  background: linear-gradient(160deg, rgba(12, 20, 44, 0.88) 0%, rgba(8, 14, 30, 0.78) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 42px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(18px);
}

.boost-admin-panel-soft {
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.boost-admin-stat {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.boost-admin-stat::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.9), rgba(59, 130, 246, 0.6), transparent);
  opacity: 0.85;
}

.boost-admin-stat.is-emerald::before {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.95), rgba(45, 212, 191, 0.55), transparent);
}

.boost-admin-stat.is-cyan::before {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.95), rgba(59, 130, 246, 0.55), transparent);
}

.boost-admin-stat.is-amber::before {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.95), rgba(249, 115, 22, 0.55), transparent);
}

.boost-admin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(238, 242, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med), box-shadow var(--t-med);
}

.boost-admin-action:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(168, 85, 247, 0.26);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px -14px rgba(124, 58, 237, 0.8);
}

.boost-admin-top-actions {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 0.75rem;
  align-items: stretch;
}

.boost-admin-identity {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
}

.boost-admin-identity-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(216, 180, 254, 0.65);
}

.boost-admin-identity-value {
  margin-top: 0.35rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
}

.boost-admin-action.is-primary {
  border-color: rgba(168, 85, 247, 0.22);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.84), rgba(59, 130, 246, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 30px -16px rgba(124, 58, 237, 0.95);
}

.boost-admin-action.is-primary:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(59, 130, 246, 0.82));
}

.boost-admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.boost-admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(188, 204, 232, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all var(--t-med);
}

.boost-admin-tab:hover {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.boost-admin-tab.active {
  color: #fff;
  border-color: rgba(168, 85, 247, 0.28);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(59, 130, 246, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.boost-admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.1rem;
  background: rgba(3, 7, 18, 0.24);
}

.boost-admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

.boost-admin-table thead th {
  padding: 1rem 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(188, 204, 232, 0.6);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.boost-admin-table tbody td {
  padding: 0.95rem 0.9rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  color: rgba(238, 242, 255, 0.82);
  vertical-align: middle;
}

.boost-admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.boost-admin-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.boost-admin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 1.9rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(238, 242, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.boost-admin-pill.is-success {
  border-color: rgba(16, 185, 129, 0.26);
  background: rgba(16, 185, 129, 0.12);
  color: rgba(167, 243, 208, 0.96);
}

.boost-admin-pill.is-warning {
  border-color: rgba(251, 191, 36, 0.26);
  background: rgba(251, 191, 36, 0.12);
  color: rgba(253, 230, 138, 0.96);
}

.boost-admin-pill.is-info {
  border-color: rgba(34, 211, 238, 0.24);
  background: rgba(34, 211, 238, 0.12);
  color: rgba(165, 243, 252, 0.96);
}

.boost-admin-alert {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  padding: 0.95rem 1rem;
  backdrop-filter: blur(10px);
}

.boost-admin-alert.is-error {
  border-color: rgba(239, 68, 68, 0.28);
  background: rgba(127, 29, 29, 0.22);
  color: rgba(254, 202, 202, 0.96);
}

.boost-admin-alert.is-warning {
  border-color: rgba(245, 158, 11, 0.24);
  background: rgba(120, 53, 15, 0.22);
  color: rgba(253, 230, 138, 0.96);
}

.boost-admin-field {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: border-color var(--t-med), box-shadow var(--t-med), background var(--t-med);
}

.boost-admin-field::placeholder {
  color: rgba(188, 204, 232, 0.38);
}

.boost-admin-field:hover {
  border-color: rgba(148, 163, 184, 0.24);
}

.boost-admin-field:focus {
  outline: none;
  border-color: rgba(168, 85, 247, 0.58);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.14), 0 16px 34px -24px rgba(124, 58, 237, 0.8);
}

.boost-admin-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.5rem;
  align-items: stretch;
}

.boost-admin-mini-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.05rem;
}

.boost-admin-job-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, rgba(12, 18, 36, 0.92), rgba(7, 12, 24, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 36px rgba(2, 6, 23, 0.24);
}

/* ─── Desktop ─── */
@media (min-width: 768px) {
  .boost-header-nav {
    gap: 0.3rem !important;
    padding-inline: 0.4rem !important;
    padding-block: 0.3rem !important;
  }

  .boost-wallet-btn {
    border-radius: 999px;
  }
}

/* ─── Mobile ─── */
@media (max-width: 767px) {
  #header-nav {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .boost-nav-link {
    min-height: 50px;
    font-size: 0.94rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(8, 14, 32, 0.52);
  }

  .boost-header-nav {
    border-top-color: rgba(148, 163, 184, 0.12) !important;
    background: rgba(2, 6, 23, 0.97) !important;
  }

  .boost-menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(8, 14, 32, 0.58);
  }

  .boost-hero-cta { align-items: stretch; }

  .boost-hero-cta a,
  .boost-token-page .inline-flex.rounded-xl,
  .boost-contact .inline-flex.rounded-xl {
    min-height: 50px;
  }

  .boost-hero::before {
    width: 340px;
    height: 220px;
    top: -30px;
  }

  main.max-w-5xl,
  main.max-w-4xl {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  h1[class*="text-3xl"],
  h1[class*="text-4xl"],
  h1[class*="text-5xl"] {
    line-height: 1.14;
  }

  #boostModal,
  #addTokenModal {
    padding: 0.85rem;
  }

  #boostModal > div,
  #addTokenModal > div[role="dialog"] {
    border-radius: 1rem;
  }

  .boost-modal > div[role="dialog"] {
    margin-block: 0.75rem;
  }

  article[data-mint] .copy-mint {
    min-width: 30px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.06);
  }

  .boost-token-list { gap: 0.88rem; }

  .boost-admin-top-actions {
    grid-template-columns: 1fr;
  }

  .boost-admin-action,
  .boost-admin-identity {
    width: 100%;
  }
}
