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

:root {
  --green:    #5aaf3c;
  --green-dk: #3d8028;
  --stone:    #8b8b8b;
  --stone-lt: #c6c6c6;
  --bg:       #141414;
  --bg-2:     #1c1c1c;
  --bg-3:     #232323;
  --border:   #2e2e2e;
  --text:     #e8e8e8;
  --text-dim: #9a9a9a;
  --gold:     #f5c518;
  --radius:   4px;
  --radius-lg: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 52px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green-dk);
}

.btn-primary:hover {
  background: var(--green-dk);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--stone);
  color: #fff;
}

.btn-download {
  background: var(--green);
  color: #fff;
  border-color: var(--green-dk);
  font-size: 1.05rem;
  padding: 16px 36px;
  margin-top: 8px;
}

.btn-download:hover {
  background: var(--green-dk);
  box-shadow: 0 0 0 3px rgba(90,175,60,0.2);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

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

.nav-links a.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.15s;
}

.nav-links a.nav-cta:hover {
  background: var(--green-dk);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('minecraft.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a2e14;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 740px;
}

.hero-label {
  font-family: 'VT323', monospace;
  font-size: 1.35rem;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.6);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--stone-lt);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-proof {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 4px;
}

.hero-quote {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  max-width: 500px;
  line-height: 1.65;
}

.hero-quote-attr {
  font-family: 'VT323', monospace;
  font-size: 1.05rem;
  color: var(--stone-lt);
  letter-spacing: 1px;
  opacity: 0.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-dim);
  font-size: 1.4rem;
  opacity: 0.6;
  animation: bobble 2s ease-in-out infinite;
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.features {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

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

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

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.how-it-works {
  background: var(--bg);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
}

.step-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 12px;
  opacity: 0.5;
}

.step-body h3 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.step-body code {
  background: var(--bg-2);
  color: var(--green);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.82rem;
  border: 1px solid var(--border);
}

.step-arrow {
  font-size: 1.6rem;
  color: var(--border);
  align-self: center;
  padding-top: 4px;
  flex-shrink: 0;
}

.reviews {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s;
}

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

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--green-dk);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.review-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.download {
  background: var(--bg);
}

.download-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.download-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: var(--text);
  letter-spacing: 1px;
}

.download-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
}

.download-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px 0;
}

.meta-badge {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: 'VT323', monospace;
  font-size: 1rem;
  letter-spacing: 1px;
}

.download-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.download-note code {
  background: var(--bg-2);
  color: var(--green);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.78rem;
  border: 1px solid var(--border);
}

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 1px;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

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

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links li:not(:last-child) {
    display: none;
  }

  .download-card {
    padding: 40px 24px;
  }
}
