.container {
  max-width: 640px;
}

.title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
}

.apps-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.app-link {
  gap: 16px;
  padding: 20px 32px;
  width: 100%;
  text-align: left;
  justify-content: space-between;
}

.app-link-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.app-link-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
}

.app-link-url {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.app-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.back-link {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-link:hover {
  color: var(--fg);
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.25);
  transform: translateX(-2px);
}

.back-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-link:hover svg {
  transform: translateX(-2px);
}

