/* src/index.css */
:root {
  --bg: #000;
  --bg-card: #0a0a0a;
  --bg-card-alt: #111;
  --border: #1a1a1a;
  --border-hover: #2a2a2a;
  --text: #fff;
  --text-muted: #888;
  --text-dim: #555;
  --accent: #e91e8c;
  --accent-hover: #ff2dab;
  --accent-glow: #e91e8c26;
  --accent-subtle: #e91e8c14;
  --purple: #7c3aed;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-pill: 9999px;
  --max-w: 1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: fixed;
  z-index: 1000;
  display: flex;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  background: #0d0d0dd9;
  align-items:  center;
  gap: 8px;
  padding: 8px 10px 8px 20px;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-brand {
  display: flex;
  align-items:  center;
  gap: 10px;
  margin-right: 4px;
}

.nav-logo {
  display: flex;
  justify-content: center;
  align-items:  center;
  width: 28px;
  height: 28px;
}

.nav-name {
  letter-spacing: -.02em;
  font-size: 15px;
  font-weight: 800;
}

.nav-ticker {
  color: var(--accent);
  background: var(--accent-subtle);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 600;
}

.nav-sep {
  background: var(--border);
  flex-shrink: 0;
  width: 1px;
  height: 20px;
  margin: 0 6px;
}

.nav-links {
  display: flex;
  align-items:  center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  transition: color .2s, background .2s;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
  background: #ffffff0d;
}

.nav-mine {
  display: flex;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  align-items:  center;
  gap: 8px;
  margin-left: 2px;
  padding: 8px 20px;
  transition: background .2s, transform .15s;
  font-size: 14px;
  font-weight: 700;
}

.nav-mine:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.mine-dot {
  animation: pulse-dot 2s ease-in-out infinite;
  background: #4ade80;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.nav-social {
  display: flex;
  align-items:  center;
  gap: 4px;
}

.nav-social a {
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  transition: color .2s;
  font-size: 14px;
  font-weight: 500;
}

.nav-social a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 160px 24px 80px;
}

.hero:before {
  content: "";
  position: absolute;
  background: radial-gradient(ellipse, var(--accent-subtle), transparent 70%);
  pointer-events: none;
  width: 700px;
  height: 500px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero h1 {
  letter-spacing: -.03em;
  position: relative;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  color: var(--text-muted);
  position: relative;
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  position: relative;
  justify-content: center;
  align-items:  center;
  gap: 12px;
  margin-bottom: 72px;
}

.btn-primary {
  display: inline-flex;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  align-items:  center;
  gap: 8px;
  padding: 12px 28px;
  transition: background .2s, transform .15s;
  font-size: 15px;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  cursor: pointer;
  background: none;
  align-items:  center;
  gap: 8px;
  padding: 12px 28px;
  transition: color .2s, border-color .2s;
  font-size: 15px;
  font-weight: 600;
}

.btn-outline:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  gap: 1px;
}

.hero-stat {
  background: var(--bg-card);
  text-align: center;
  padding: 28px 16px;
}

.hero-stat-value {
  letter-spacing: -.02em;
  margin-bottom: 4px;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
}

.hero-stat-label {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding: 48px 0;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 48px;
  width: max-content;
}

.marquee-item {
  color: var(--text-dim);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items:  center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.marquee-item:before {
  content: "◆";
  color: var(--accent);
  font-size: 8px;
}

.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px;
}

.section-head {
  margin-bottom: 56px;
}

.section-head h2 {
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.section-head p {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.7;
}

.divider {
  background: linear-gradient(90deg, #0000, #e91e8c66 30%, #7c3aed66 70%, #0000);
  max-width: 80%;
  height: 1px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s;
}

.step-card:hover {
  border-color: var(--border-hover);
}

.step-num {
  display: inline-flex;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .3s;
}

.info-card:hover {
  border-color: var(--border-hover);
}

.info-card h4 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.info-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gpu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items:  center;
  gap: 48px;
  padding: 40px;
}

.gpu-info h3 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.gpu-info p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.gpu-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gpu-feature {
  display: flex;
  color: var(--text-muted);
  align-items:  center;
  gap: 10px;
  font-size: 14px;
}

.gpu-feature .check {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 14px;
}

.gpu-terminal {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d0d0d;
}

.gpu-terminal-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #ffffff08;
  align-items:  center;
  gap: 6px;
  padding: 10px 14px;
}

.terminal-dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.terminal-dot.red {
  background: #ff5f57;
}

.terminal-dot.yellow {
  background: #febc2e;
}

.terminal-dot.green {
  background: #28c840;
}

.gpu-terminal-body {
  color: var(--text-muted);
  padding: 16px;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 13px;
  line-height: 1.8;
}

.gpu-terminal-body .t-accent {
  color: var(--accent);
}

.gpu-terminal-body .t-green {
  color: #4ade80;
}

.gpu-terminal-body .t-dim {
  color: var(--text-dim);
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: border-color .3s;
}

.token-card:hover {
  border-color: var(--border-hover);
}

.token-card-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
}

.token-big-number {
  letter-spacing: -.03em;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

.token-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.halving-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 16px;
}

.halving-table th {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
}

.halving-table td {
  color: var(--text-muted);
  border-bottom: 1px solid #ffffff08;
  padding: 10px 0;
  font-size: 14px;
}

.halving-table td:last-child {
  color: var(--text);
  font-weight: 700;
}

.halving-table tr.active td, .halving-table tr.active td:last-child {
  color: var(--accent);
}

.token-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.token-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .3s;
}

.token-feature:hover {
  border-color: var(--border-hover);
}

.token-feature h4 {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.token-feature p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg-card);
}

.faq-question {
  display: flex;
  color: var(--text);
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items:  center;
  width: 100%;
  padding: 22px 28px;
  transition: color .2s;
  font-size: 15px;
  font-weight: 600;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  color: var(--text-dim);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .3s, color .2s;
  font-size: 18px;
}

.faq-item.open .faq-icon {
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s, padding .35s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  color: var(--text-muted);
  padding: 0 28px 22px;
  font-size: 14px;
  line-height: 1.7;
}

.explorer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.explorer-header {
  margin-bottom: 40px;
}

.explorer-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.explorer-header h1 {
  letter-spacing: -.03em;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

.prelaunch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  padding: 48px;
}

.prelaunch-badge {
  display: inline-flex;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: .08em;
  align-items:  center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
}

.prelaunch-dot {
  animation: pulse-dot 2s ease-in-out infinite;
  background: #f59e0b;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.prelaunch-card h2 {
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
}

.prelaunch-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
}

.prelaunch-links {
  display: flex;
  align-items:  center;
  gap: 24px;
}

.link-accent {
  color: var(--accent);
  transition: color .2s;
  font-size: 14px;
  font-weight: 600;
}

.link-accent:hover {
  color: var(--accent-hover);
}

.link-muted {
  color: var(--text-dim);
  transition: color .2s;
  font-size: 14px;
}

.link-muted:hover {
  color: var(--text-muted);
}

.net-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  gap: 1px;
  margin-bottom: 32px;
}

.net-stat {
  background: var(--bg-card);
  text-align: center;
  padding: 24px 16px;
}

.net-stat-value {
  letter-spacing: -.02em;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 800;
}

.net-stat-label {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}

.explorer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}

.explorer-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.explorer-section h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
}

.blocks-table-wrap {
  overflow-x: auto;
}

.blocks-table {
  border-collapse: collapse;
  width: 100%;
}

.blocks-table th {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 8px 12px 12px;
  font-size: 11px;
  font-weight: 600;
}

.blocks-table td {
  color: var(--text-muted);
  border-bottom: 1px solid #ffffff08;
  padding: 10px 12px;
  font-size: 13px;
}

.blocks-table tbody tr:hover {
  background: #ffffff05;
}

.td-mono {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.td-hash {
  color: var(--text-dim);
  font-family: SF Mono, Fira Code, monospace;
  font-size: 12px;
}

.td-dim {
  color: var(--text-dim);
}

.load-more-btn {
  display: block;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text-muted);
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  transition: all .2s;
  font-size: 13px;
}

.load-more-btn:hover {
  background: var(--border);
  color: var(--text);
}

.docs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.docs-header {
  margin-bottom: 48px;
}

.docs-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.docs-header h1 {
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

.docs-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

.docs-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items:  start;
  gap: 48px;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
}

.docs-nav {
  display: flex;
  border-left: 1px solid var(--border);
  flex-direction: column;
  gap: 2px;
  padding-left: 0;
}

.docs-nav-item {
  display: block;
  text-align: left;
  font-family: var(--font);
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border: none;
  border-left: 2px solid #0000;
  width: 100%;
  margin-left: -1px;
  padding: 8px 16px;
  transition: color .2s, border-color .2s;
  font-size: 13px;
  font-weight: 500;
}

.docs-nav-item:hover {
  color: var(--text-muted);
}

.docs-nav-item.active {
  color: var(--accent);
  border-left-color: var(--accent);
  font-weight: 600;
}

.docs-content {
  min-width: 0;
}

.docs-section {
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  padding-bottom: 48px;
}

.docs-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.docs-section h2 {
  letter-spacing: -.02em;
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.docs-section h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
}

.docs-section p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.75;
}

.docs-section p code, .docs-section li code {
  color: var(--accent);
  background: #ffffff0f;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 13px;
}

.docs-link {
  color: var(--accent);
  transition: color .2s;
  font-weight: 600;
}

.docs-link:hover {
  color: var(--accent-hover);
}

.docs-callout {
  background: var(--accent-subtle);
  border-radius: var(--radius-sm);
  border: 1px solid #e91e8c26;
  margin: 20px 0;
  padding: 20px 24px;
}

.docs-callout-title {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.docs-callout p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.docs-callout p code {
  color: var(--accent);
  background: #ffffff0f;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 13px;
}

.docs-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.docs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: border-color .3s;
}

.docs-card:hover {
  border-color: var(--border-hover);
}

.docs-card h4 {
  color: var(--text);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.docs-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.6;
}

.docs-code {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d0d0d;
  margin: 16px 0;
}

.docs-code.compact {
  margin: 12px 0 0;
}

.docs-code-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #ffffff08;
  align-items:  center;
  padding: 8px 14px;
}

.docs-code-bar span {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  font-weight: 600;
}

.docs-code pre {
  color: var(--text-muted);
  overflow-x: auto;
  white-space: pre;
  margin: 0;
  padding: 16px;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 13px;
  line-height: 1.7;
}

.docs-code.compact pre {
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.6;
}

.docs-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0 24px;
}

.docs-step {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  align-items:  flex-start;
  gap: 16px;
  padding: 20px 24px;
}

.docs-step-num {
  display: inline-flex;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 800;
}

.docs-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.docs-step p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.6;
}

.docs-table {
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: 100%;
  margin: 16px 0;
}

.docs-table th {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: #ffffff05;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
}

.docs-table td {
  color: var(--text-muted);
  border-bottom: 1px solid #ffffff08;
  padding: 10px 16px;
  font-size: 13px;
}

.docs-table.emission-table td:nth-child(3) {
  color: var(--text);
  font-weight: 700;
}

.docs-table tbody tr:hover {
  background: #ffffff05;
}

.docs-api-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.docs-api-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: border-color .3s;
}

.docs-api-item:hover {
  border-color: var(--border-hover);
}

.docs-api-header {
  display: flex;
  align-items:  center;
  gap: 12px;
  margin-bottom: 10px;
}

.docs-api-method {
  display: inline-flex;
  letter-spacing: .04em;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  justify-content: center;
  align-items:  center;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
}

.docs-api-method.get {
  color: #4ade80;
  background: #4ade801a;
}

.docs-api-method.post {
  color: #fbbf24;
  background: #fbbf241a;
}

.docs-api-method.ws {
  color: #a78bfa;
  background: #7c3aed1a;
}

.docs-api-path {
  color: var(--text);
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 14px;
  font-weight: 600;
}

.docs-api-desc {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.6;
}

.dl {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.dl-header {
  margin-bottom: 48px;
}

.dl-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.dl-header h1 {
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

.dl-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

.rent-gpu-btn {
  display: inline-flex;
  color: #fff;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #e91e8c, #c21876);
  border: none;
  align-items:  center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 32px;
  transition: transform .15s, box-shadow .15s;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 24px #e91e8c59;
}

.rent-gpu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px #e91e8c8c;
}

.rent-gpu-btn:active {
  transform: translateY(0);
}

.dl-platforms {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.dl-platform {
  display: grid;
  grid-template-columns: auto 1fr auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items:  center;
  gap: 20px;
  padding: 24px 28px;
  transition: border-color .3s;
}

.dl-platform:hover {
  border-color: var(--border-hover);
}

.dl-platform-icon {
  display: flex;
  background: var(--accent-subtle);
  border-radius: var(--radius-xs);
  color: var(--accent);
  justify-content: center;
  align-items:  center;
  width: 48px;
  height: 48px;
}

.dl-platform-info h3 {
  margin-bottom: 2px;
  font-size: 1rem;
  font-weight: 700;
}

.dl-arch {
  color: var(--text-dim);
  font-size: 13px;
}

.dl-platform-actions {
  display: flex;
  align-items:  center;
  gap: 12px;
}

.rent-tier-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.rent-tier-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rent-tier-label {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  font-size: 11px;
}

.rent-tier-value {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.dl-cmd {
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  overflow-x: auto;
  background: #0d0d0d;
  padding: 10px 16px;
}

.dl-cmd code {
  color: var(--text-muted);
  white-space: nowrap;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 12px;
}

.dl-section {
  padding: 48px 0;
}

.dl-section h2 {
  letter-spacing: -.02em;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.dl-section p {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.75;
}

.dl-section code {
  color: var(--accent);
  background: #ffffff0f;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 13px;
}

.dl-terminal {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d0d0d;
  max-width: 720px;
}

.dl-cloud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dl-cloud-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .3s;
}

.dl-cloud-card:hover {
  border-color: var(--border-hover);
}

.dl-cloud-card h3 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.dl-cloud-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.dl-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dl-req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .3s;
}

.dl-req-card:hover {
  border-color: var(--border-hover);
}

.dl-req-card h4 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.dl-req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dl-req-list li {
  color: var(--text-muted);
  display: flex;
  align-items:  center;
  gap: 10px;
  font-size: 13px;
}

.dl-req-list li:before {
  content: "✓";
  color: var(--accent);
  flex-shrink: 0;
  font-size: 13px;
}

.dl-cta {
  text-align: center;
  padding: 48px 0 0;
}

.dl-cta p {
  color: var(--text-muted);
  font-size: 14px;
}

.mine {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.mine-header {
  margin-bottom: 40px;
}

.mine-page-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.mine-header h1 {
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

.mine-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

.mine-controls {
  margin-bottom: 24px;
}

.mine-connect-section {
  position: relative;
}

.mine-connect-btn {
  display: inline-flex;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items:  center;
  gap: 10px;
  width: 100%;
  padding: 14px 32px;
  transition: background .2s, transform .15s;
  font-size: 15px;
  font-weight: 700;
}

.mine-connect-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.mine-connect-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.wallet-picker-overlay {
  position: fixed;
  z-index: 1001;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  animation: fade-in-overlay .2s ease;
  background: #000000b3;
  justify-content: center;
  align-items:  center;
  padding: 24px;
  inset: 0;
}

.wallet-picker {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: slide-down-menu .25s ease;
  width: 100%;
  max-width: 360px;
  padding: 24px;
}

.wallet-picker-title {
  text-align: center;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
}

.wallet-picker-item {
  display: flex;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-family: var(--font);
  cursor: pointer;
  align-items:  center;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
  padding: 14px 16px;
  transition: border-color .2s, background .2s;
  font-size: 15px;
  font-weight: 600;
}

.wallet-picker-item:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.wallet-picker-empty {
  text-align: center;
  padding: 16px 0;
}

.wallet-picker-empty p {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.wallet-picker-empty a {
  color: var(--accent);
  font-weight: 600;
}

.wallet-picker-divider {
  background: var(--border);
  height: 1px;
  margin: 8px 0;
}

.wallet-picker-manual {
  display: block;
  color: var(--text-dim);
  font-family: var(--font);
  cursor: pointer;
  text-align: center;
  background: none;
  border: none;
  width: 100%;
  padding: 10px;
  transition: color .2s;
  font-size: 13px;
  font-weight: 500;
}

.wallet-picker-manual:hover {
  color: var(--text-muted);
}

.mine-wallet-connected {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex: 1;
  justify-content: space-between;
  align-items:  center;
  gap: 12px;
  padding: 12px 18px;
}

.mine-wallet-info {
  display: flex;
  align-items:  center;
  gap: 10px;
}

.mine-wallet-badge {
  color: var(--accent);
  background: var(--accent-subtle);
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
}

.mine-wallet-addr {
  color: var(--text);
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 14px;
  font-weight: 600;
}

.mine-disconnect-btn {
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  white-space: nowrap;
  background: none;
  padding: 5px 12px;
  transition: color .2s, border-color .2s;
}

.mine-disconnect-btn:hover {
  color: #f87171;
  border-color: #f87171;
}

.mine-wallet-row {
  display: flex;
  align-items:  flex-end;
  gap: 12px;
}

.mine-wallet-input-wrap {
  flex: 1;
}

.mine-start-btn {
  display: inline-flex;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  align-items:  center;
  gap: 10px;
  padding: 14px 32px;
  transition: background .2s, transform .15s;
  font-size: 15px;
  font-weight: 700;
}

.mine-start-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.mine-start-dot {
  animation: pulse-dot 2s ease-in-out infinite;
  background: #4ade80;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.mine-stop-btn {
  display: inline-flex;
  color: var(--text);
  font-family: var(--font);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  align-items:  center;
  padding: 14px 32px;
  transition: border-color .2s, color .2s;
  font-size: 15px;
  font-weight: 700;
}

.mine-stop-btn:hover {
  color: #f87171;
  border-color: #f87171;
}

.mine-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  gap: 1px;
  margin-bottom: 16px;
}

.mine-stat-card {
  background: var(--bg-card);
  text-align: center;
  padding: 24px 16px;
}

.mine-stat-value {
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
  font-size: 1.1rem;
  font-weight: 800;
}

.mine-stat-label {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
}

.mine-network {
  display: flex;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  align-items:  center;
  gap: 1px;
  margin-bottom: 24px;
}

.mine-net-item {
  background: var(--bg-card);
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items:  center;
  gap: 8px;
  padding: 12px 16px;
}

.mine-net-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  font-weight: 600;
}

.mine-net-value {
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
}

.mine-net-hash {
  color: var(--text-dim);
  font-family: SF Mono, Fira Code, monospace;
  font-size: 11px;
  font-weight: 500;
}

.mine-status-active {
  color: #4ade80;
}

.mine-log {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 32px;
}

.mine-log-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #ffffff05;
  justify-content: space-between;
  align-items:  center;
  padding: 10px 16px;
}

.mine-log-bar span {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  font-weight: 600;
}

.mine-log-clear {
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font);
  background: none;
  padding: 3px 10px;
  transition: color .2s, border-color .2s;
}

.mine-log-clear:hover {
  color: var(--text-muted);
  border-color: var(--border-hover);
}

.mine-log-body {
  overflow-y: auto;
  max-height: 320px;
  padding: 8px 0;
  font-family: SF Mono, Fira Code, Cascadia Code, monospace;
  font-size: 12px;
  line-height: 1.6;
}

.mine-log-body::-webkit-scrollbar {
  width: 6px;
}

.mine-log-body::-webkit-scrollbar-track {
  background: none;
}

.mine-log-body::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 3px;
}

.mine-log-empty {
  color: var(--text-dim);
  text-align: center;
  font-family: var(--font);
  padding: 24px 16px;
  font-size: 13px;
}

.mine-log-line {
  display: flex;
  gap: 12px;
  padding: 3px 16px;
  transition: background .15s;
}

.mine-log-line:hover {
  background: #ffffff05;
}

.mine-log-ts {
  color: var(--text-dim);
  flex-shrink: 0;
}

.mine-log-msg {
  color: var(--text-muted);
  word-break: break-all;
}

.mine-log-line.success .mine-log-msg {
  color: #4ade80;
}

.mine-log-line.error .mine-log-msg {
  color: #f87171;
}

.mine-log-line.block .mine-log-msg {
  color: var(--accent);
}

.mine-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mine-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .3s;
}

.mine-info-card:hover {
  border-color: var(--border-hover);
}

.mine-info-card h4 {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.mine-info-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-cols {
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin: 0 auto 48px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items:  center;
  gap: 12px;
}

.footer-name {
  font-size: 16px;
  font-weight: 800;
}

.footer-ticker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.footer-chain {
  color: var(--text-dim);
  font-size: 13px;
}

.footer-desc {
  color: var(--text-dim);
  max-width: 280px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
}

.footer-col a {
  color: var(--text-muted);
  transition: color .2s;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: var(--max-w);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-top: 24px;
}

.footer-disclaimer {
  color: var(--text-dim);
  font-size: 12px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transition: opacity .6s, transform .6s;
  transform: translateY(24px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items:  center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: 4px;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  background: var(--text-muted);
  border-radius: 2px;
  width: 18px;
  height: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-hamburger.open span:first-child {
  transform: translateY(7px)rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px)rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  z-index: 999;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fade-in-overlay .2s ease;
  background: #000000b3;
  inset: 0;
}

.mobile-menu {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  animation: slide-down-menu .25s ease;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  top: 72px;
  left: 16px;
  right: 16px;
}

.mobile-menu a {
  display: flex;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  align-items:  center;
  gap: 10px;
  padding: 14px 16px;
  transition: background .2s, color .2s;
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu a:hover, .mobile-menu a:active {
  color: var(--text);
  background: #ffffff0d;
}

.mobile-menu-mine {
  color: var(--accent) !important;
}

.mobile-menu-sep {
  background: var(--border);
  height: 1px;
  margin: 4px 0;
}

@keyframes fade-in-overlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-down-menu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width <= 900px) {
  .navbar {
    gap: 4px;
    padding: 6px 8px 6px 16px;
  }

  .nav-links a {
    padding: 6px 8px;
    font-size: 13px;
  }

  .nav-mine {
    padding: 7px 16px;
    font-size: 13px;
  }

  .steps-grid, .info-grid {
    grid-template-columns: 1fr;
  }

  .gpu-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .token-grid, .token-features {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .net-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .explorer-grid {
    grid-template-columns: 1fr;
  }

  .docs-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .docs-sidebar {
    position: relative;
    margin-bottom: 32px;
    top: 0;
  }

  .docs-nav {
    border-left: none;
    border-bottom: 1px solid var(--border);
    flex-flow: wrap;
    gap: 4px;
    padding-bottom: 8px;
    padding-left: 0;
  }

  .docs-nav-item {
    border-bottom: 2px solid #0000;
    border-left: none;
    margin-left: 0;
    padding: 6px 12px;
    font-size: 12px;
  }

  .docs-nav-item.active {
    border-left-color: #0000;
    border-bottom-color: var(--accent);
  }

  .docs-grid-2 {
    grid-template-columns: 1fr;
  }

  .dl-platform {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dl-platform-icon {
    width: 40px;
    height: 40px;
  }

  .dl-cloud-grid, .dl-req-grid {
    grid-template-columns: 1fr;
  }

  .mine-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mine-network {
    flex-wrap: wrap;
  }

  .mine-net-item {
    flex: 45%;
  }

  .mine-info-row {
    grid-template-columns: 1fr;
  }
}

@media (width <= 640px) {
  .navbar {
    gap: 2px;
    width: auto;
    padding: 6px 8px 6px 14px;
    top: 10px;
    left: 16px;
    right: 16px;
    transform: none;
  }

  .nav-sep, .nav-links, .nav-social {
    display: none;
  }

  .nav-mine {
    margin-left: auto;
  }

  .nav-hamburger {
    display: flex;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .net-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .net-stat:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .prelaunch-card {
    padding: 24px;
  }

  .prelaunch-links {
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding: 110px 20px 60px;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 48px;
  }

  .section {
    padding: 64px 20px;
  }

  .gpu-card {
    padding: 20px;
  }

  .gpu-terminal-body {
    overflow-x: auto;
    padding: 12px;
    font-size: 11px;
  }

  .hero-stat {
    padding: 20px 12px;
  }

  .docs {
    padding: 100px 16px 60px;
  }

  .docs-section h2 {
    font-size: 1.4rem;
  }

  .docs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 12px;
  }

  .docs-nav::-webkit-scrollbar {
    display: none;
  }

  .docs-nav-item {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .docs-code pre {
    font-size: 11px;
  }

  .docs-api-header {
    flex-wrap: wrap;
    gap: 8px;
  }

  .docs-api-path {
    word-break: break-all;
    font-size: 12px;
  }

  .docs-step {
    gap: 12px;
    padding: 16px;
  }

  .docs-table td, .docs-table th {
    padding: 8px 10px;
    font-size: 12px;
  }

  .dl {
    padding: 100px 16px 60px;
  }

  .dl-platform {
    padding: 16px;
  }

  .dl-cmd code {
    word-break: break-all;
    white-space: pre-wrap;
    font-size: 11px;
  }

  .mine {
    padding: 100px 16px 60px;
  }

  .mine-wallet-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mine-wallet-connected {
    padding: 10px 14px;
  }

  .mine-wallet-addr {
    font-size: 13px;
  }

  .mine-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mine-stat-card {
    padding: 16px 12px;
  }

  .mine-stat-value {
    font-size: .95rem;
  }

  .mine-network {
    flex-direction: column;
  }

  .mine-net-item {
    flex: auto;
  }

  .mine-log-body {
    max-height: 260px;
    font-size: 11px;
  }

  .mine-log-line {
    gap: 8px;
    padding: 3px 12px;
  }

  .mine-info-card {
    padding: 20px;
  }

  .explorer {
    padding: 100px 16px 60px;
  }

  .explorer-section {
    padding: 20px;
  }

  .blocks-table th, .blocks-table td {
    padding: 8px;
    font-size: 11px;
  }

  .td-hash {
    font-size: 10px;
  }

  .footer {
    padding: 40px 16px 32px;
  }

  .token-card {
    padding: 24px;
  }

  .token-big-number {
    font-size: 1.8rem;
  }

  .halving-table td, .halving-table th {
    padding: 8px 0;
    font-size: 12px;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }

  .step-card {
    padding: 24px 20px;
  }

  .info-card {
    padding: 20px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 14px;
  }

  .faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 13px;
  }
}

@media (width <= 380px) {
  .nav-name {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

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