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

html, body {
  height: 100%;
  background: #111;
  color: #ccc;
  font-family: -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.launcher {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 60px 30px 40px;
}

.time {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  text-align: center;
  margin-bottom: 40px;
}

.category {
  margin-bottom: 28px;
}

.category-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 14px;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 8px;
}

.app-link {
  font-size: 18px;
  letter-spacing: 1px;
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  cursor: pointer;
}

.app-link:active {
  color: #fff;
}

.setup-link {
  text-align: center;
  margin-top: auto;
  padding-top: 40px;
}

.setup-link a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
}

.setup-link a:active {
  color: #888;
}

/* Setup Guide */
.guide {
  max-width: 500px;
  margin: 0 auto;
}

.guide-title {
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #ccc;
  margin-bottom: 12px;
}

.guide-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 36px;
}

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.step-number {
  font-size: 14px;
  color: #555;
  min-width: 20px;
  padding-top: 2px;
}

.step-content h2 {
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #ccc;
  margin-bottom: 10px;
  font-weight: 500;
}

.step-content p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 8px;
}

.nav-path {
  font-family: 'SF Mono', 'Menlo', monospace;
  font-size: 12px !important;
  color: #666 !important;
  background: #1a1a1a;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px !important;
}

.app-checklist {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  columns: 2;
  column-gap: 20px;
}

.app-checklist li {
  font-size: 14px;
  color: #888;
  padding: 3px 0;
}
