:root {
  --bg: #090909;
  --panel: rgba(16, 16, 20, 0.68);
  --panel-strong: rgba(20, 20, 26, 0.88);
  --text: #f5f3ee;
  --muted: #c9c4b6;
  --accent: #ff7728;
  --accent-soft: #ffb267;
  --accent-2: #8c5a2c;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 126, 46, 0.18), transparent 25%),
    radial-gradient(circle at top right, rgba(255, 126, 46, 0.12), transparent 20%),
    linear-gradient(180deg, #060606, var(--bg));
  min-height: 100vh;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 115, 0, 0.10), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(255, 115, 0, 0.12), transparent 18%);
  filter: blur(14px);
}

.site-header,
.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 18px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1b120c;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a,
.ghost-button {
  color: var(--text);
  text-decoration: none;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.88;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.page-shell {
  padding-bottom: 42px;
}

.hero-slider {
  position: relative;
}

.hero-slider-frame {
  overflow: hidden;
  border-radius: 28px;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  border-radius: 28px;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  overflow: hidden;
  border-radius: 28px;
}

.hero-card {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121212;
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
}

.hero-card::before {
  z-index: 0;
  background: conic-gradient(from 0deg, rgba(255, 180, 80, 0.92), rgba(255, 95, 90, 0.92), rgba(120, 190, 255, 0.92), rgba(255, 180, 80, 0.92));
  filter: blur(8px);
  opacity: 0.9;
  transform-origin: center;
  animation: electric-spin 4s linear infinite;
}

.hero-card::after {
  z-index: 1;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 18px rgba(255, 165, 80, 0.16), 0 0 24px rgba(255, 165, 80, 0.16);
}

@keyframes electric-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-slider-arrow.prev {
  left: 18px;
}

.hero-slider-arrow.next {
  right: 18px;
}



.hero-banner,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-banner {
  background:
    linear-gradient(180deg, rgba(6, 9, 12, 0.02), rgba(0, 0, 0, 0.58)),
    url('images/Game-Art-01.png') center/cover;
  transform: scale(1.04);
  background-size: cover;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 66% 52%, rgba(170, 220, 255, 0.28), transparent 12%),
    radial-gradient(circle at 64% 50%, rgba(255, 220, 160, 0.16), transparent 16%);
  mix-blend-mode: screen;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.6), transparent 52%),
    radial-gradient(circle at left center, rgba(255, 120, 40, 0.22), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 42px;
}

.hero-slide-disclaimer {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  margin: 0;
  max-width: clamp(20ch, 22vw, 28ch);
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.6;
  text-align: right;
  backdrop-filter: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-badge {
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
  margin: 0 0 20px;
  color: #ff7a1f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 24px rgba(255, 116, 30, 0.25);
}

.hero-copy {
  max-width: 60ch;
  color: #f4efe6;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.ghost-button:hover,
.main-nav a:hover,
.viewer-btn:hover,
.roadmap-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ffb36f);
  color: #1b120c;
  box-shadow: 0 12px 28px rgba(255, 122, 31, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.platform-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.platform-list button.platform-chip {
  padding: 9px 12px;
  border-radius: 999px;
  min-width: 108px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.platform-list button.platform-chip:hover,
.platform-list button.platform-chip:focus,
.platform-list button.platform-chip.hovered {
  transform: translateY(-2px);
}

.platform-list button.platform-chip.unconfirmed,
.platform-list button.platform-chip.confirmed {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.platform-list button.platform-chip.unconfirmed.hovered,
.platform-list button.platform-chip.unconfirmed:hover,
.platform-list button.platform-chip.unconfirmed:focus {
  background: rgba(255, 50, 50, 0.35);
  border-color: rgba(255, 50, 50, 0.95);
  color: #ffd4d4;
}

.platform-list button.platform-chip.confirmed.hovered,
.platform-list button.platform-chip.confirmed:hover,
.platform-list button.platform-chip.confirmed:focus {
  background: rgba(100, 240, 120, 0.45);
  border-color: rgba(90, 240, 120, 0.95);
  color: #f5ffef;
}

.platform-status-detail {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.viewer-layout {
  margin: 32px 0 20px;
  display: block;
}

.viewer-panel,
.phase-detail {
  padding: 28px;
}

.viewer-panel {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(180deg, rgba(12, 14, 22, 0.95), rgba(8, 10, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.viewer-label-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.viewer-label-copy,
.centered-label-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
}

.viewer-label-copy .eyebrow {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
}

.viewer-metrics {
  display: none;
}

.viewer-panel-title {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffbb78;
  max-width: 760px;
}

.viewer-panel-copy {
  margin: 0 auto;
  color: rgba(225, 219, 206, 0.9);
  line-height: 1.9;
  max-width: 860px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.viewer-quality-block {
  display: none;
}

.viewer-metrics {
  display: none;
}

.progress-bar.quality-inline {
  width: 220px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar.quality-inline span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.4s ease;
}

#viewer-root {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, rgba(255, 152, 64, 0.16), transparent 18%),
    radial-gradient(circle at 72% 40%, rgba(88, 165, 255, 0.10), transparent 16%),
    linear-gradient(180deg, rgba(11, 11, 16, 0.96), rgba(2, 2, 6, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 30px 70px rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.vote-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.vote-card-preview {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(8, 10, 14, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.vote-card-preview canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.vote-card-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.25);
}

.vote-card.vote-empty {
  flex: 0 0 100%;
  max-width: 100%;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 0;
  text-align: center;
  padding: 32px;
  border-radius: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.viewer-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
}

.viewer-filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.viewer-nav,
.viewer-filter-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.viewer-nav {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.viewer-filter-btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: 120px;
  text-align: center;
}

.viewer-filter-btn:hover,
.viewer-filter-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.viewer-filter-btn.active {
  background: linear-gradient(135deg, rgba(255, 119, 30, 0.95), rgba(255, 183, 104, 0.95));
  border-color: rgba(255, 148, 49, 0.9);
  color: #1b120c;
  box-shadow: 0 16px 32px rgba(255, 133, 35, 0.18);
}

.vote-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  user-select: none;
}

.vote-card {
  cursor: grab;
}

.vote-card:active {
  cursor: grabbing;
}

.vote-grid::-webkit-scrollbar {
  height: 10px;
}

.vote-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.vote-grid::-webkit-scrollbar-track {
  background: transparent;
}

.vote-card {
  flex: 0 0 min(420px, 100%);
  scroll-snap-align: start;
  will-change: transform;
}

.vote-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  background: rgba(7, 9, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 28px 64px rgba(0, 0, 0, 0.42);
}

.vote-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.vote-card-header > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vote-card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 1;
}

.vote-card-header strong {
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}


.vote-card-preview {
  width: 100%;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(14, 16, 22, 0.5);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vote-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vote-card-preview-fallback {
  color: rgba(201, 196, 182, 0.8);
  font-size: 0.98rem;
  text-align: center;
  padding: 20px;
}

.vote-card-description {
  margin: 0 auto;
  color: rgba(225, 219, 206, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
  text-align: center;
  max-width: 90%;
}

.vote-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vote-card-actions button {
  min-width: 180px;
  margin-top: 0;
  padding: 14px 32px;
  font-size: 0.95rem;
}

.vote-type {
  color: #ffb877;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.vote-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


.vote-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.vote-chart-row {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 14px;
  align-items: center;
}

.vote-chart-bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.vote-chart-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.vote-chart-row strong {
  min-width: 48px;
  text-align: right;
}

.model-select-wrap {
  display: none;
}

.viewer-select-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
}

#model-select {
  min-width: 220px;
  max-width: 320px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 18, 0.94);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

.viewer-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 242, 238, 0.95);
  padding: 12px 22px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.viewer-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.viewer-btn.active {
  border-color: rgba(255, 154, 52, 0.95);
  color: #fff4e6;
  background: linear-gradient(135deg, rgba(255, 136, 59, 0.18), rgba(255, 183, 108, 0.18));
  box-shadow: 0 12px 24px rgba(255, 142, 35, 0.12);
}

.viewer-info h2,
.phase-detail h3 {
  margin: 10px 0 12px;
  text-transform: uppercase;
}

.progress-wrap {
  margin-top: 20px;
}

.progress-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.progress-bar,
.phase-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.progress-bar span,
.phase-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.4s ease;
}

.stats-grid,
.timeline-grid,
.asset-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 12px;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.stat-card,
.roadmap-card,
.asset-card,
.news-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-size: 2.2rem;
  margin: 10px 0;
}

.stat-label,
.roadmap-card span,
.news-card span {
  color: var(--accent-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.stat-card p,
.roadmap-card p,
.asset-card p,
.news-card p,
.viewer-info p,
.phase-detail p {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 48px 0 10px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2,
.news-title h2 {
  margin: 8px 0 0;
  font-size: 2.15rem;
  text-transform: uppercase;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.timeline-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roadmap-card {
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.roadmap-card.active {
  border-color: rgba(255, 133, 58, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 133, 58, 0.4), var(--shadow);
}

.roadmap-card h3,
.asset-card h3,
.news-card h3 {
  margin: 12px 0 10px;
  text-transform: uppercase;
}

.phase-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phase-detail-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phase-kicker {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.asset-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.asset-icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.news-strip {
  padding: 48px 0 0;
}

.site-footer {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 18px 42px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer p {
  margin: 6px 0;
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .viewer-layout,
  .timeline-layout,
  .stats-grid,
  .timeline-grid,
  .asset-grid,
  .news-grid,
  .vote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .viewer-layout,
  .timeline-layout,
  .stats-grid,
  .timeline-grid,
  .asset-grid,
  .news-grid,
  .vote-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-card {
    min-height: 580px;
  }

  .main-nav {
    display: none;
  }
}
