:root {
  --bg-color: #f0f0f0;
  --text-color: #111;
  --dim-color: #666;
  --link-color: #111;
  --border-color: #ccc;
  --font-mono: 'Space Mono', monospace;
  --wrapper-max-width: 680px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #111;
    --text-color: #eee;
    --dim-color: #999;
    --link-color: #eee;
    --border-color: #333;
  }
}

[data-theme="dark"] {
  --bg-color: #111;
  --text-color: #eee;
  --dim-color: #999;
  --link-color: #eee;
  --border-color: #333;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

/* Hide scrollbar */
body::-webkit-scrollbar {
  display: none;
}

html::-webkit-scrollbar {
  display: none;
}

.container {
  max-width: var(--wrapper-max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Center horizontally */
  min-height: 100vh;
  /* Center vertically for coming soon page */
  text-align: center;
  /* Ensure internal text is centered */
}

h1,
h2,
h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

a {
  color: var(--link-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  background-color: var(--text-color);
  color: var(--bg-color);
  text-decoration: none;
}

/* Header customization for Coming Soon */
/* Header customization for Coming Soon */
.header {
  text-align: center;
}

.name {
  font-size: 2rem;
  /* Slightly larger for Coming Soon */
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.role {
  font-size: 1.1rem;
  color: var(--dim-color);
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .container {
    padding: 2rem 1.5rem;
  }
}