/* Swiss Design - Minimal, Typography-focused */

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

body, html {
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-color-scheme: dark) {
  body {
    color: #eee;
    background-color: #222;
  }
}

.main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.content {
  width: 100%;
  max-width: 540px;
  text-align: left;
}

.name {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.description {
  font-size: 16px;
  font-weight: 300;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
  .description {
    color: #bbb;
  }
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: opacity 0.2s ease;
  display: inline-block;
  width: fit-content;
}

.link:hover {
  opacity: 0.6;
}

.arrow {
  margin-left: 4px;
  display: inline-block;
  color: inherit;
}

@media (max-width: 480px) {
  .name {
    font-size: 20px;
  }
  
  .description {
    font-size: 14px;
  }
  
  .link {
    font-size: 14px;
  }
}

