/* Homedev SPA - Minimal, dark theme */
body {
  background: #111;
  color: #f0f0f0;
  margin: 0;
  font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
  min-height: 100vh;
}
#spa-root {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
}
#spa-hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
}
#spa-item-nav {
  width: 100vw;
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 2em 0 0 0;
  position: relative;
  z-index: 11;
}
.spa-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 320px;
}
.spa-hero-image, .spa-hero-gif {
  max-width: 80vw;
  max-height: 60vh;
  border-radius: 16px;
  box-shadow: 0 4px 32px #000a;
  background: #222;
}
.spa-hero-text {
  font-size: 2.5rem;
  color: #5ee87d;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 1.5rem 0;
  text-align: center;
}
.spa-nav-btn {
  background: #222;
  color: #5ee87d;
  border: none;
  border-radius: 8px;
  padding: 0.75em 1.5em;
  margin: 0.5em;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.spa-nav-btn:active, .spa-nav-btn:focus {
  background: #333;
  outline: none;
}
