* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #051b26;
  color: #e2e8f0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
}

.center {
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 0;
}

.stack {
  text-align: center;
  display: grid;
  gap: 0.75rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 0.5px;
}

.credit {
  margin: 0;
  font-size: 1rem;
  color: #8fb7cd;
}

.console {
  margin-top: 0.5rem;
  width: min(90vw, 1100px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  text-align: left;
  
}

.console-header {
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  color: #bcd7e4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.console-body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  padding: 0.75rem;
  line-height: 1.5;
  overflow-y: auto;
  max-height: 900px;
  color: #d8e6ee;
  background: #151515;
}

.console-body .line {
  margin: 0 0 0.35rem;
  white-space: pre-wrap;
  word-break: break-word;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

footer a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8fb7cd;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
}

footer a:hover {
  color: #bcd7e4;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

footer a i {
  font-size: 1rem;
}
