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

html { scroll-behavior: smooth; }

body {
  background: #0a1628;
  color: #c8d8e8;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.badge {
  display: inline-block;
  padding: .3rem .9rem;
  background: #3a2800;
  color: #c8a44a;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.2rem;
  letter-spacing: .08em;
  color: #e8f4ff;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.tagline {
  margin-top: .6rem;
  font-size: 1.1rem;
  color: #cfe4f4;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  max-width: 38rem;
  margin-inline: auto;
}

main {
  max-width: 60rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section { margin-bottom: 3.5rem; }

h2 {
  color: #7eb8d4;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  border-bottom: 1px solid #1e3a5f;
  padding-bottom: .5rem;
}

.about p { color: #c8d8e8; font-size: 1.02rem; max-width: 42rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature {
  background: #0d1f3c;
  border: 1px solid #1e3a5f;
  border-radius: 8px;
  padding: 1.2rem;
}

.feature h3 { color: #e8f4ff; font-size: 1rem; margin-bottom: .5rem; }
.feature p  { color: #9ab4cc; font-size: .9rem; }

.devlog-entry {
  display: flex;
  gap: 1.2rem;
  background: #0d1f3c;
  border: 1px solid #1e3a5f;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.devlog-entry img {
  width: 14rem;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid #1e3a5f;
}

.devlog-datum {
  font-size: .75rem;
  color: #4a7a9a;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}

.devlog-text h3 { color: #e8f4ff; font-size: 1rem; margin-bottom: .5rem; }
.devlog-text ul { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.devlog-text li { color: #9ab4cc; font-size: .9rem; padding-left: 1rem; position: relative; }
.devlog-text li::before { content: '–'; position: absolute; left: 0; color: #4a7a9a; }

@media (max-width: 600px) {
  .devlog-entry { flex-direction: column; }
  .devlog-entry img { width: 100%; }
}

.stack-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.stack-list li {
  background: #1e3a5f;
  color: #7eb8d4;
  border: 1px solid #2e5a8f;
  border-radius: 4px;
  padding: .4rem .9rem;
  font-size: .85rem;
}

.contact p { margin-bottom: 1rem; color: #9ab4cc; }

.btn {
  display: inline-block;
  padding: .6rem 1.3rem;
  background: #1e3a5f;
  color: #7eb8d4;
  border: 1px solid #2e5a8f;
  border-radius: 6px;
  text-decoration: none;
  font-size: .95rem;
}
.btn:hover { background: #2e4a6f; color: #e8f4ff; }

footer {
  text-align: center;
  padding: 1.5rem;
  color: #4a6a8a;
  font-size: .8rem;
  border-top: 1px solid #1e3a5f;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
}
