:root {
  --import-card-offset: 3rem; /* ↑ desce o card de importação (ex: 4rem, 8rem, 120px) */
  --bg-dark: #0a0f0a;
  --bg-card: rgba(18, 28, 18, 0.85);
  --bg-card-hover: rgba(24, 38, 24, 0.95);
  --grass: #5a9e3a;
  --grass-light: #7bc950;
  --grass-dark: #3d7a28;
  --dirt: #8b6914;
  --stone: #7a7a7a;
  --accent: #55ff55;
  --accent-glow: rgba(85, 255, 85, 0.25);
  --gold: #ffd700;
  --text: #e8f0e8;
  --text-muted: #9ab09a;
  --border: rgba(85, 255, 85, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --font-pixel: 'Silkscreen', monospace;
  --font-body: 'Inter', 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: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-particles {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(85, 255, 85, 0.08), transparent),
    radial-gradient(circle at 20% 80%, rgba(90, 158, 58, 0.06), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(61, 122, 40, 0.05), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 15, 10, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-pixel);
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
}

.logo-block {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--grass-light), var(--grass-dark));
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset -2px -2px 0 rgba(0, 0, 0, 0.2), inset 2px 2px 0 rgba(255, 255, 255, 0.15);
  image-rendering: pixelated;
}

.logo-block.small {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--grass);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--grass-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Hero / Slides */
.hero {
  position: relative;
  z-index: 1;
  min-height: clamp(380px, 58vh, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 6rem 1.5rem 2.5rem;
  text-align: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 11rem;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slide.active {
  position: relative;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 2rem;
  animation: slideUp 0.8s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--accent);
  background: rgba(85, 255, 85, 0.1);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  letter-spacing: 0.05em;
}

.slide-content h1 {
  font-family: var(--font-pixel);
  font-size: clamp(1.4rem, 3.5vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slide-content h1 em {
  color: var(--accent);
  font-style: normal;
}

.slide-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.45;
}

.code-inline {
  color: var(--gold);
  font-family: var(--font-pixel);
}

.hero-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(18, 28, 18, 0.8);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-btn:hover {
  background: var(--grass);
  border-color: var(--grass);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  flex-shrink: 0;
}

.hero-dot.active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  width: 28px;
  border-radius: 5px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
}

.hero-actions .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--grass);
  background-color: var(--grass);
  color: #fff;
  opacity: 1;
  box-shadow: 0 4px 20px rgba(90, 158, 58, 0.5);
  border: 2px solid var(--grass-dark);
}

.btn-primary:hover {
  background: var(--grass-light);
  background-color: var(--grass-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90, 158, 58, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
}

.hero-actions .btn-primary {
  position: relative;
  z-index: 10;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-header h2 {
  font-family: var(--font-pixel);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.75rem 0;
}

.section-header p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* Info cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 255, 85, 0.3);
}

.info-card.highlight {
  border-color: rgba(85, 255, 85, 0.35);
  background: linear-gradient(135deg, rgba(90, 158, 58, 0.12), var(--bg-card));
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: var(--font-pixel);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.info-list {
  list-style: none;
}

.info-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: var(--text);
}

.info-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.config-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.config-panel h3 {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.config-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.config-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--grass-light);
}

.config-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Mods */
.mods-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grass);
  border-color: var(--grass);
  color: #fff;
}

.mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.mod-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mod-card:hover {
  border-color: rgba(85, 255, 85, 0.35);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.mod-card.hidden {
  display: none;
}

.mod-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.mod-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.mod-icon.worldgen { background: linear-gradient(135deg, #4a90a4, #2d5a6b); }
.mod-icon.gameplay { background: linear-gradient(135deg, #9b59b6, #6c3483); }
.mod-icon.utility { background: linear-gradient(135deg, #e67e22, #a04000); }
.mod-icon.library { background: linear-gradient(135deg, #7f8c8d, #4a5568); }

.mod-title {
  flex: 1;
}

.mod-title h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.mod-version {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--gold);
}

.mod-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.mod-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  text-transform: capitalize;
}

/* Tutorial */
.tutorial-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: stretch;
}

.tutorial-layout--import {
  position: relative;
}

.code-card-slot {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
}

.tutorial-steps {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--grass), transparent);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grass-light), var(--grass-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-pixel);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(90, 158, 58, 0.3);
}

.step-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step-body strong {
  color: var(--accent);
}

.code-card,
.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.code-card--import {
  width: 100%;
  margin-top: var(--import-card-offset);
  box-shadow: var(--shadow);
}

.code-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.code-card-header span:first-child {
  font-weight: 600;
}

.code-badge {
  font-family: var(--font-pixel);
  font-size: 0.6rem;
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.code-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.code-display code {
  flex: 1;
  font-family: var(--font-pixel);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--grass);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.copy-btn:hover {
  background: var(--grass-light);
}

.copy-btn.copied {
  background: #27ae60;
}

.code-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Mock app visual */
.mock-app {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.75rem;
}

.mock-titlebar {
  background: #2a2a2a;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
}

.mock-dot:first-child { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-body {
  display: flex;
  background: #1a1a1a;
  min-height: 180px;
}

.mock-sidebar {
  width: 80px;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid #333;
}

.mock-nav-item {
  padding: 0.4rem;
  border-radius: 4px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-size: 0.65rem;
}

.mock-nav-item.active {
  background: rgba(85, 255, 85, 0.15);
  color: var(--accent);
}

.mock-main {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mock-import-btn {
  align-self: flex-start;
  background: rgba(85, 255, 85, 0.2);
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
}

.mock-field label {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-size: 0.6rem;
}

.mock-input {
  background: #0a0a0a;
  border: 1px solid #444;
  padding: 0.5rem;
  border-radius: 4px;
  font-family: var(--font-pixel);
  color: var(--gold);
  font-size: 0.7rem;
}

.mock-play-btn {
  align-self: flex-start;
  background: var(--grass);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  margin-top: auto;
  font-size: 0.7rem;
}

/* Connect server tutorial */
.section-connect {
  padding-top: 4rem;
}

.tutorial-layout--connect {
  align-items: start;
}

.server-card {
  position: sticky;
  top: 6rem;
  border-color: rgba(85, 255, 85, 0.25);
  background: linear-gradient(160deg, rgba(90, 158, 58, 0.1), var(--bg-card));
}

.server-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.server-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-pixel);
  font-size: 0.7rem;
  color: var(--accent);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.server-ip-block {
  margin-bottom: 1.25rem;
}

.server-ip-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.code-display--server {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.code-display--server code {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  word-break: break-all;
  text-align: center;
  line-height: 1.5;
}

.code-display--server .copy-btn {
  justify-content: center;
  width: 100%;
}

.server-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.server-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.server-meta strong {
  color: var(--text);
  font-weight: 600;
}

/* Mock Minecraft UI */
.mock-mc {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 220px;
}

.mock-mc-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 16px,
      rgba(85, 255, 85, 0.03) 16px,
      rgba(85, 255, 85, 0.03) 32px
    ),
    linear-gradient(135deg, #1a2e1a, #0a120a);
}

.mock-mc-panel {
  position: relative;
  z-index: 1;
  margin: 1.25rem;
  padding: 1rem;
  background: rgba(20, 20, 20, 0.92);
  border: 2px solid #555;
  border-top-color: #888;
  border-left-color: #777;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.mock-mc-panel h4 {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: #ccc;
  text-align: center;
  margin-bottom: 0.85rem;
  text-shadow: 1px 1px 0 #000;
}

.mock-mc-field {
  margin-bottom: 0.65rem;
}

.mock-mc-field label {
  display: block;
  font-size: 0.55rem;
  color: #888;
  margin-bottom: 0.2rem;
}

.mock-mc-input {
  background: #000;
  border: 2px solid #333;
  border-top-color: #111;
  border-left-color: #111;
  padding: 0.4rem 0.5rem;
  font-size: 0.6rem;
  color: #aaa;
}

.mock-mc-field.highlight .mock-mc-input {
  border-color: var(--grass-dark);
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: 0.55rem;
}

.mock-mc-input--ip {
  word-break: break-all;
}

.mock-mc-actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.mock-mc-btn {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  padding: 0.45rem 0.85rem;
  border: 2px solid #555;
  border-top-color: #888;
  border-left-color: #777;
  background: #444;
  color: #ccc;
  text-shadow: 1px 1px 0 #000;
}

.mock-mc-btn--primary {
  background: linear-gradient(180deg, var(--grass-light), var(--grass-dark));
  border-color: var(--grass-dark);
  color: #fff;
}

/* Download */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s;
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(85, 255, 85, 0.15);
}

.os-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.download-card h3 {
  font-family: var(--font-pixel);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.download-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--grass-light), var(--grass-dark));
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: box-shadow 0.2s;
}

.download-card:hover .download-btn {
  box-shadow: 0 4px 20px rgba(90, 158, 58, 0.4);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: transparent;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-inner p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.75rem !important;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 900px) {
  .tutorial-layout {
    grid-template-columns: 1fr;
  }

  .code-card-slot {
    grid-column: auto;
  }

  .code-card--import {
    box-shadow: none;
  }

  .server-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 10, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .hero {
    min-height: clamp(360px, 52vh, 480px);
    padding: 5.5rem 1rem 2rem;
  }

  .hero-slider {
    min-height: 10rem;
  }

  .hero-nav {
    width: 100%;
    max-width: 320px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 4rem 0;
  }
}
