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

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #f4f5f7;
  color: #222;
  line-height: 1.6;
  padding: 24px;
}

main {
  max-width: 640px;
  margin: 0 auto;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.subtitle {
  color: #666;
  margin-bottom: 24px;
}

.mod-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

.mod-info h2 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  background: #2d7ff9;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}

.version-select {
  margin-top: 8px;
  padding: 6px 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}

.mod-file {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #888;
  font-family: monospace;
}

.download-btn {
  flex-shrink: 0;
  background: #2d7ff9;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s;
}

.download-btn:hover {
  background: #1a6ae0;
}
