@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #070d1a;
  --bg2: #0c1529;
  --panel: rgba(10, 18, 35, 0.82);
  --panel-border: rgba(100, 180, 255, 0.14);
  --panel-border-hover: rgba(110, 231, 255, 0.35);
  --text: #e2edff;
  --text-soft: #b0c4e0;
  --muted: #6b85a8;
  --accent: #5ce4ff;
  --accent-glow: rgba(92, 228, 255, 0.25);
  --accent2: #9b72ff;
  --accent2-glow: rgba(155, 114, 255, 0.25);
  --good: #34d39a;
  --warn: #fbbf24;
  --danger: #f87171;
  --gold: #f6c93a;
  --mining: #5ce4ff;
  --farm: #4ade80;
  --coin: #f6c93a;
  --nav-h: 64px;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse at 15% 10%, rgba(155, 114, 255, 0.22) 0%, transparent 35%),
    radial-gradient(ellipse at 85% 0%, rgba(92, 228, 255, 0.2) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 100%, rgba(74, 222, 128, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #040810 0%, #07111f 48%, var(--bg) 100%);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  opacity: 0.35;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,13,26,0) 0%, rgba(7,13,26,0.12) 100%);
  z-index: 0;
}

h1, h2, h3, h4, h5, h6, .nav-logo, .section-title, .hero-title {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(7, 13, 26, 0.72);
  border-bottom: 1px solid rgba(100, 180, 255, 0.12);
  backdrop-filter: blur(22px) saturate(1.2);
  display: flex; align-items: center;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: auto; text-decoration: none;
}
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 10px;
  color: var(--text-soft); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.nav-link.active { color: var(--accent); }
.nav-user {
  display: flex; align-items: center; gap: 10px;
  margin-left: 12px; padding-left: 12px;
  border-left: 1px solid var(--panel-border);
}
.nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--accent);
}
.nav-avatar-placeholder {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--panel-border); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--muted);
}
.nav-username { font-size: 0.88rem; font-weight: 600; color: var(--text-soft); }

/* ── LAYOUT ── */
.page { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 80px; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
main { position: relative; z-index: 1; }

/* ── CARDS ── */
.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
  backdrop-filter: blur(18px) saturate(1.1);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.hero {
  text-align: center;
  padding: 72px 0 44px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade 0.9s ease-out forwards;
  animation-delay: 0.1s;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 12px 0 18px;
  letter-spacing: -0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-pop 0.9s ease-out forwards;
  animation-delay: 0.2s;
}
.hero-desc {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-fade 0.9s ease-out forwards;
  animation-delay: 0.35s;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: badge-glow 3.6s ease-in-out infinite;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(92,228,255,0.16);
}
.hero-title {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 0.98;
  margin: 16px 0 18px;
}
.hero-title .gradient-text {
  display: inline-block;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -12% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,114,255,0.22), transparent 70%);
  filter: blur(18px);
  animation: hero-orb 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-points span {
  animation: float-in 5s ease-in-out infinite;
}
.hero-points span:nth-child(2) { animation-delay: -1.3s; }
.hero-points span:nth-child(3) { animation-delay: -2.4s; }
.hero-points span:nth-child(4) { animation-delay: -3.5s; }
.showcase-card {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  animation: card-float 6s ease-in-out infinite;
}
.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 40%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 5.4s linear infinite;
  pointer-events: none;
}
.showcase-metric {
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.showcase-metric:hover {
  transform: translateY(-4px);
  border-color: rgba(92,228,255,0.28);
}
.feature-card {
  min-height: 220px;
}
.feature-card:hover .feature-art {
  transform: rotate(-8deg) scale(1.05);
}
.feature-art {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.compact-feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.flow-item {
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.flow-item:hover {
  transform: translateX(4px);
  border-color: rgba(92,228,255,0.18);
}
.spotlight-card {
  background: linear-gradient(135deg, rgba(92,228,255,0.12), rgba(155,114,255,0.08));
}
.meta-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.meta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(92,228,255,0.24);
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 14px 40px rgba(92,228,255,0.16); }
}
@keyframes hero-orb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -16px, 0) scale(1.04); }
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes float-in {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
.hero-copy {
  padding-top: 10px;
  position: relative;
}
.hero-copy::after {
  content: '';
  position: absolute;
  inset: auto auto -18px 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 999px;
}
.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-points span {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  min-height: 100%;
}
.hero {
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 10% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(92,228,255,0.2), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  animation: drift 10s ease-in-out infinite;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}
.showcase-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(92,228,255,0.18), transparent 35%),
              radial-gradient(circle at bottom left, rgba(155,114,255,0.16), transparent 30%);
  pointer-events: none;
}
.showcase-card > * {
  position: relative;
  z-index: 1;
}
.showcase-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.showcase-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.showcase-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}
.showcase-kicker {
  color: var(--text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.showcase-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.showcase-brand p {
  color: var(--text-soft);
  font-size: 0.92rem;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(52,211,153,0.12);
  color: var(--good);
  font-size: 0.78rem;
  font-weight: 700;
}
.status-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(52,211,153,0.16);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.showcase-metric {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.showcase-metric span {
  display: block;
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.showcase-metric strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}
.showcase-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.showcase-actions .btn {
  flex: 1 1 160px;
}
.pulse-ring {
  animation: pulse-ring 2.4s ease-in-out infinite;
}
.flow-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.flow-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.flow-item h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.flow-item p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}
.flow-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,228,255,0.12);
  color: var(--accent);
  font-weight: 800;
}
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.mini-stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.mini-stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.mini-stat span {
  color: var(--text-soft);
  font-size: 0.85rem;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 26px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--panel-border-hover);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 60%);
  pointer-events: none;
}
.feature-card > * {
  position: relative;
  z-index: 1;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(92,228,255,0.75), transparent);
  transform: scaleX(0.22);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.feature-card:hover::after {
  transform: scaleX(1);
}
.feature-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.feature-art {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.feature-copy {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.65;
}
.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.feature-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
}
.feature-list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}
.section-shell {
  margin-top: 74px;
}
.section-shell .section-header {
  margin-bottom: 26px;
}
.section-title {
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}
.section-desc {
  font-size: 1rem;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 16px;
}
.timeline {
  display: grid;
  gap: 12px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.timeline-step .step-no {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,228,255,0.12);
  color: var(--accent);
  font-weight: 800;
}
.timeline-step h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}
.timeline-step p {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.92rem;
}
.insight-card {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.insight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.insight-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--text-soft);
  font-size: 0.84rem;
}
.insight-strip span strong {
  color: var(--text);
}
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(92,228,255,0.4), rgba(155,114,255,0.4), transparent);
}
.home-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.home-footer-cta .btn {
  min-width: 180px;
}
.panel-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(92, 228, 255, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.panel-metric strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.panel-metric span {
  color: var(--text-soft);
  font-size: 0.96rem;
}
.panel-list {
  display: grid;
  gap: 12px;
}
.panel-list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.panel-list b {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 228, 255, 0.14);
  color: var(--accent);
}
.panel-list span {
  color: var(--text-soft);
  font-size: 0.95rem;
}
.panel-cta {
  width: 100%;
  justify-content: center;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 40px auto 0;
  max-width: 860px;
}
.meta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 20px;
  text-align: center;
}
.meta-card strong {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.meta-card span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.section {
  margin-top: 64px;
}
.section-header {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}
.feature-grid {
  align-items: stretch;
}
.feature-card {
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  font-size: 1.3rem;
}
.stats-row {
  margin-top: 56px;
}
.trust-strip {
  margin-top: 18px;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
  border-radius: 24px;
}
.stats-bar div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats-bar span {
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.stats-bar strong {
  font-size: 1.65rem;
  font-weight: 800;
}
.callout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.callout .section-title {
  text-align: left;
  margin: 10px 0 10px;
}
.callout-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.callout-actions .btn {
  width: 100%;
  justify-content: center;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.page-loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 13, 26, 0.96);
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.page-loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.page-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,0.14);
  border-top-color: var(--accent);
  animation: spin 0.95s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.float-card {
  animation: float-soft 6s ease-in-out infinite;
}
.centered-card {
  margin: 72px auto 0;
  text-align: center;
  padding: 48px 36px;
}
.card:hover {
  border-color: var(--panel-border-hover);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(92,228,255,0.08);
}
.card-glow-blue  { box-shadow: 0 0 40px rgba(92,228,255,0.12), 0 16px 60px rgba(0,0,0,0.4); }
.card-glow-purple { box-shadow: 0 0 40px rgba(155,114,255,0.12), 0 16px 60px rgba(0,0,0,0.4); }
.card-glow-green  { box-shadow: 0 0 40px rgba(74,222,128,0.12), 0 16px 60px rgba(0,0,0,0.4); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 12px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #a8f3ff);
  color: #030c1a; box-shadow: 0 4px 20px rgba(92,228,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,228,255,0.45); }
.btn-purple {
  background: linear-gradient(135deg, var(--accent2), #c4a8ff);
  color: #0a0320; box-shadow: 0 4px 20px rgba(155,114,255,0.3);
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(155,114,255,0.45); }
.btn-green {
  background: linear-gradient(135deg, var(--farm), #a7f3d0);
  color: #031a0c; box-shadow: 0 4px 20px rgba(74,222,128,0.3);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,222,128,0.45); }
.btn-ghost {
  background: transparent; color: var(--text-soft);
  border: 1px solid var(--panel-border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--panel-border-hover); }
.btn-danger { background: rgba(248,113,113,0.15); color: var(--danger); border: 1px solid rgba(248,113,113,0.3); }
.btn-danger:hover { background: rgba(248,113,113,0.25); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; border-radius: 9px; }

/* ── LABELS / BADGES ── */
.label {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
.label-blue   { background: rgba(92,228,255,0.12);  color: var(--accent); }
.label-purple { background: rgba(155,114,255,0.12); color: var(--accent2); }
.label-green  { background: rgba(52,211,154,0.12);  color: var(--good); }
.label-gold   { background: rgba(246,201,58,0.12);  color: var(--gold); }
.label-red    { background: rgba(248,113,113,0.12); color: var(--danger); }

/* ── PROGRESS BAR ── */
.progress-wrap { background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; height: 8px; }
.progress-bar {
  height: 100%; border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.progress-bar-blue   { background: linear-gradient(90deg, var(--accent2), var(--accent)); }
.progress-bar-green  { background: linear-gradient(90deg, #22c55e, #4ade80); }
.progress-bar-gold   { background: linear-gradient(90deg, #d97706, var(--gold)); }

/* ── SECTION TITLES ── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.section-title { font-size: 1.6rem; font-weight: 800; line-height: 1.1; margin-bottom: 8px; }
.section-desc { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--panel-border); margin: 20px 0; }

/* ── GRID UTILS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── STAT BOX ── */
.stat-box {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 16px 18px;
}
.stat-value { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.stat-change { font-size: 0.8rem; margin-top: 6px; }
.stat-change.up { color: var(--good); }
.stat-change.down { color: var(--danger); }

/* ── COOLDOWN / TIMER ── */
.cooldown-ring { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.cooldown-ring svg { transform: rotate(-90deg); }
.cooldown-ring .time { position: absolute; font-size: 1rem; font-weight: 700; color: var(--text); }

/* ── RESOURCE ROW ── */
.resource-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.resource-row:last-child { border-bottom: none; }
.resource-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.resource-name { font-weight: 600; font-size: 0.92rem; flex: 1; }
.resource-qty  { font-weight: 700; font-size: 1rem; }

/* ── MINING NODE CARD ── */
.node-card {
  border: 1px solid var(--panel-border); border-radius: 16px; padding: 18px;
  background: rgba(255,255,255,0.02);
  cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden;
}
.node-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(92,228,255,0.04));
  pointer-events: none;
}
.node-card:hover { border-color: var(--accent); background: rgba(92,228,255,0.04); transform: translateY(-2px); }
.node-card.selected { border-color: var(--accent); background: rgba(92,228,255,0.08); box-shadow: 0 0 20px rgba(92,228,255,0.15); }
.node-card.exhausted { opacity: 0.5; cursor: default; }
.node-card.exhausted:hover { transform: none; border-color: var(--panel-border); background: rgba(255,255,255,0.02); }

/* ── FARM PLOT ── */
.plot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 700px) { .plot-grid { grid-template-columns: repeat(2, 1fr); } }
.plot {
  aspect-ratio: 1; border-radius: 14px; border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.02); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  cursor: pointer; transition: all 0.2s; font-size: 1.8rem;
  position: relative; overflow: hidden;
}
.plot:hover { border-color: var(--farm); background: rgba(74,222,128,0.06); transform: scale(1.03); }
.plot.empty { color: var(--muted); font-size: 1.4rem; }
.plot.growing { border-color: rgba(74,222,128,0.3); }
.plot.ready { border-color: var(--farm); box-shadow: 0 0 16px rgba(74,222,128,0.2); animation: pulse-green 2s infinite; }
.plot-label { font-size: 0.65rem; font-weight: 600; color: var(--muted); }

.card {
  opacity: 0;
  transform: translateY(18px);
  animation: card-rise 0.8s ease-out forwards;
  animation-delay: 0.15s;
}

@keyframes card-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 16px rgba(74,222,128,0.2); }
  50%       { box-shadow: 0 0 28px rgba(74,222,128,0.45); }
}

/* ── RANKING TABLE ── */
.rank-table { width: 100%; border-collapse: collapse; }
.rank-table th {
  text-align: left; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); padding: 10px 14px;
  border-bottom: 1px solid var(--panel-border);
}
.rank-table td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.rank-table tr:last-child td { border-bottom: none; }
.rank-table tr:hover td { background: rgba(255,255,255,0.025); }
.rank-num { font-weight: 800; font-size: 1rem; }
.rank-1 { color: #ffd700; }
.rank-2 { color: #c0c0c0; }
.rank-3 { color: #cd7f32; }
.rank-user { display: flex; align-items: center; gap: 10px; }
.rank-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--panel-border); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 12px 18px; border-radius: 12px; font-size: 0.88rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; min-width: 220px;
  animation: toast-in 0.3s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(16px);
}
.toast-success { background: rgba(52,211,154,0.15); border: 1px solid rgba(52,211,154,0.3); color: var(--good); }
.toast-error   { background: rgba(248,113,113,0.15); border: 1px solid rgba(248,113,113,0.3); color: var(--danger); }
.toast-info    { background: rgba(92,228,255,0.12);  border: 1px solid rgba(92,228,255,0.25);  color: var(--accent); }
.toast-warning { background: rgba(251,191,36,0.15);  border: 1px solid rgba(251,191,36,0.3);  color: var(--warn); }
@keyframes toast-in { from { opacity: 0; transform: translateX(40px) scale(0.9); } to { opacity: 1; transform: none; } }

/* ── HERO GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #ff9de2 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── FLOATING ORB (background decoration) ── */
.orb {
  position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
  opacity: 0.35; animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: var(--accent2); top: -100px; left: -100px; }
.orb-2 { width: 300px; height: 300px; background: var(--accent); top: 40%; right: -80px; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: var(--farm); bottom: -60px; left: 30%; animation-delay: -5s; opacity: 0.18; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.04); }
}

@keyframes hero-fade {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-pop {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(14px, -16px, 0) scale(1.05); }
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92,228,255,0.24); }
  50% { box-shadow: 0 0 0 10px rgba(92,228,255,0); }
}

@media (max-width: 900px) {
  .hero-shell, .callout, .split-grid, .home-footer-cta {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero-title {
    max-width: none;
  }
  .callout-actions {
    min-width: 0;
  }
  .hero-meta, .stats-bar, .feature-row, .showcase-grid, .compact-feature-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero-actions { flex-direction: column; }
  nav {
    height: auto;
    min-height: var(--nav-h);
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .nav-inner {
    align-items: center;
  }
  .nav-user {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .nav-link {
    font-size: 0.82rem;
    padding: 6px 10px;
  }
  .wrap {
    padding: 0 18px;
  }
  .showcase-top {
    flex-direction: column;
  }
}

/* ── MISC ── */
.text-muted  { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-good   { color: var(--good); }
.text-gold   { color: var(--gold); }
.text-danger { color: var(--danger); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.flex  { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }

/* ── FLOATING NUMBERS ── */
.float-number {
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  font-size: 1.4rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(92,228,255,0.6), 0 2px 8px rgba(0,0,0,0.6);
  opacity: 1;
  transition: none;
}
.float-number.float-up {
  animation: float-up 0.85s ease-out forwards;
}
@keyframes float-up {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-80px) scale(1.3); }
}

/* ── MINING PAGE ── */
.mining-page { max-width: 700px; margin: 0 auto; }
.mining-header { text-align: center; margin-bottom: 24px; }
.mining-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px;
}
.stat-card {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: 16px;
  padding: 16px; display: flex; align-items: center; gap: 14px;
}
.stat-icon { font-size: 1.8rem; }

.mining-area {
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: 20px;
  padding: 32px 24px; text-align: center;
}

.durability-bar-container { margin-bottom: 28px; }
.durability-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-soft); margin-bottom: 6px; }
.durability-bar-track {
  height: 14px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; position: relative;
}
.durability-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  transition: width 0.1s ease-out;
  box-shadow: 0 0 16px var(--accent-glow);
}

.rock-container {
  display: flex; justify-content: center; margin-bottom: 20px;
}
.rock {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(145deg, #3a4a6a, #1a2a4a);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; user-select: none;
  transition: transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 -4px 12px rgba(0,0,0,0.3), inset 0 4px 12px rgba(255,255,255,0.05);
  border: 2px solid rgba(100,180,255,0.15);
}
.rock:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(92,228,255,0.2), inset 0 -4px 12px rgba(0,0,0,0.3);
}
.rock:active { transform: scale(0.95); }
.rock-hit { animation: rock-hit 0.12s ease-out; }
@keyframes rock-hit {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}
.rock-face { font-size: 3.5rem; margin-bottom: 4px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.rock-label { font-size: 0.78rem; font-weight: 700; color: var(--text-soft); letter-spacing: 0.04em; }

.fever-indicator {
  background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(251,191,36,0.05));
  border: 1px solid rgba(251,191,36,0.3); border-radius: 14px; padding: 14px;
  margin-bottom: 16px; animation: fever-pulse 0.6s ease-in-out infinite alternate;
}
.fever-indicator.hidden { display: none; }
.fever-text { font-size: 1.2rem; font-weight: 900; color: var(--warn); text-shadow: 0 0 20px rgba(251,191,36,0.4); }
.fever-timer { font-size: 1.6rem; font-weight: 900; color: var(--gold); margin-top: 4px; }
@keyframes fever-pulse {
  from { box-shadow: 0 0 12px rgba(251,191,36,0.2); }
  to   { box-shadow: 0 0 28px rgba(251,191,36,0.4); }
}

.mining-reward-log {
  max-height: 160px; overflow-y: auto; margin-top: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.reward-entry {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  font-size: 0.85rem; font-weight: 600; animation: reward-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.reward-icon { font-size: 1rem; }
@keyframes reward-pop {
  from { opacity: 0; transform: translateY(-10px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── RAID PAGE ── */
.raid-page { max-width: 800px; margin: 0 auto; }
.raid-header { text-align: center; margin-bottom: 24px; }
.raid-boss-card { text-align: center; }
.raid-boss-info {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.raid-boss-icon { font-size: 4rem; line-height: 1; }

.hp-bar-container { width: 100%; }
.hp-bar-track {
  height: 28px; background: rgba(255,255,255,0.06); border-radius: 999px;
  overflow: hidden; position: relative;
}
.hp-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--good), #22c55e);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.hp-bar-glow {
  position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: hp-shimmer 2s infinite;
}
@keyframes hp-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
.hp-bar-label {
  font-size: 1.6rem; font-weight: 900; text-align: center; margin-top: 8px;
  text-shadow: 0 0 20px rgba(92,228,255,0.3);
}

.raid-attack-btn { min-width: 200px; font-size: 1.1rem; }
.raid-user-dmg { font-size: 0.95rem; color: var(--text-soft); }
.raid-contributions { }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .mining-stats-row { grid-template-columns: 1fr; }
  .rock { width: 110px; height: 110px; }
  .rock-face { font-size: 2.8rem; }
  .hp-bar-track { height: 20px; }
  .hp-bar-label { font-size: 1.2rem; }
}

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ── ADDICTIVE EFFECTS ── */
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.shake { animation: shake 0.25s cubic-bezier(.36,.07,.19,.97); }

body.fever-bg-active {
  animation: fever-bg-anim 1.5s infinite alternate;
}
@keyframes fever-bg-anim {
  from { box-shadow: inset 0 0 50px rgba(251,191,36,0.1); }
  to { box-shadow: inset 0 0 150px rgba(251,191,36,0.4); }
}

.rock.rock-fever {
  animation: fever-rock-glow 0.8s infinite alternate;
  background: linear-gradient(145deg, #4a3c1a, #2a1c0a);
}
@keyframes fever-rock-glow {
  from { box-shadow: 0 8px 32px rgba(251,191,36,0.3), inset 0 -4px 12px rgba(0,0,0,0.3); border-color: rgba(251,191,36,0.4); }
  to { box-shadow: 0 8px 60px rgba(251,191,36,0.7), inset 0 -4px 12px rgba(0,0,0,0.3); border-color: rgba(251,191,36,1); transform: scale(1.08); }
}

.hit-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  animation: particle-burst 0.6s ease-out forwards;
}
@keyframes particle-burst {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0) translate(var(--tx), var(--ty)); opacity: 0; }
}

/* ── DASHBOARD ── */
.quick-link {
  display: flex; flex-direction: column; gap: 6px; padding: 20px;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s;
  cursor: pointer; color: inherit;
}
.quick-link:hover {
  border-color: var(--panel-border-hover); transform: translateY(-3px);
}
.quick-link-icon { font-size: 2rem; }
.quick-link-title { font-weight: 700; font-size: 1.1rem; }
.quick-link-desc { font-size: 0.85rem; color: var(--text-soft); line-height: 1.4; }

/* ── INVENTORY ── */
.inv-header { display: flex; align-items: center; gap: 12px; }
.inv-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.inv-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.inv-filter {
  padding: 4px 12px; border-radius: 999px; border: 1px solid var(--panel-border);
  background: transparent; color: var(--text-soft); cursor: pointer; font-size: 0.8rem;
  transition: all 0.15s;
}
.inv-filter:hover { border-color: var(--accent); color: var(--accent); }
.inv-filter.active { background: var(--accent); color: #000; border-color: var(--accent); }
.inv-actions { display: flex; gap: 6px; }
.inv-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.inv-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: var(--panel); border: 1px solid var(--panel-border); border-radius: 12px;
  transition: border-color 0.15s;
}
.inv-item:hover { border-color: var(--panel-border-hover); }
.inv-check { width: 18px; height: 18px; cursor: pointer; accent-color: var(--accent); }
.inv-item-name { flex: 1; font-weight: 600; font-size: 0.95rem; }
.inv-item-grade { font-size: 0.75rem; padding: 2px 8px; border-radius: 999px; font-weight: 600; }
.grade-전설 { background: rgba(255, 215, 0, 0.2); color: #ffd700; }
.grade-에픽 { background: rgba(155, 114, 255, 0.2); color: #c084fc; }
.grade-희귀 { background: rgba(92, 228, 255, 0.15); color: #5ce4ff; }
.grade-고급 { background: rgba(52, 211, 154, 0.15); color: #34d39a; }
.grade-일반 { background: rgba(255, 255, 255, 0.08); color: var(--text-soft); }
.inv-item-qty { font-weight: 700; color: var(--text); min-width: 36px; text-align: right; }
.inv-item-price { font-size: 0.85rem; color: var(--gold); min-width: 70px; text-align: right; }
.inv-sell-one { font-size: 0.8rem !important; padding: 2px 10px !important; }
