* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #000;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 2rem 1rem;
  height: 100%;
}
.footer {
  margin-top: auto;
}
#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  align-items: center;
}
header img {
  position: absolute;
  top: 1rem;
  left: 1rem;
  height: 40px;
  image-rendering: pixelated;
}
.nav-bar {
  display: flex;
  gap: 1rem;
  margin-top: 6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.nav-bar a {
  padding: 0.4rem 1rem;
  border: 1px solid #999;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  background: #222;
}
.intro {
  max-width: 700px;
  background: #111;
  border: 2px dotted #fff;
  padding: 2rem;
  filter: drop-shadow(0 0 5px #fff);
  margin-bottom: 2rem;
}
.intro h1 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.intro p {
  font-size: 0.7rem;
  line-height: 1.5rem;
  color: #ccc;
}
.projects {
  margin: 2rem 0;
  font-size: 0.7rem;
}
.projects a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid #7effe9;
  color: #7effe9;
  text-decoration: none;
}
.projects a:hover {
  background: #7effe9;
  color: #000;
}
.footer {
  font-size: 10px;
  color: #888;
  padding: 2rem 0;
  margin-top: auto;
}
.ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 #444, inset 0 -1px 0 #444;
  background: #111;
  color: #0ff;
  font-size: 10px;
  padding: 0.5rem;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 1000;
}
.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 20s linear infinite;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.twitter-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}

.twitter-float img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px #0ff);
  image-rendering: pixelated;
}
.blog-list {
  max-width: 700px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  background: #111;
  border: 1px solid #0ff;
  padding: 1.5rem;
  text-align: left;
  font-size: 10px;
}

.blog-card h2 {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: #7effe9;
}

.blog-card p {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.4rem;
}

.blog-card a {
  color: #0ff;
  text-decoration: none;
  border-bottom: 1px dotted #0ff;
}

.blog-card a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
