.home-card {
  padding: 32px
}

.home-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px
}

.home-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px
}

.mode-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background .15s
}

.mode-option:hover {
  border-color: var(--accent);
  background: #f8faff
}

.mode-option.selected {
  border-color: var(--accent);
  background: #eef2ff
}

.mode-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--accent)
}

.mode-label {
  font-weight: 600;
  font-size: 15px;
  color: #0f172a
}

.mode-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px
}

.category-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 10px;
  background: #fff
}

.category-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #2563eb1a
}

.start-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 20px
}

.admin-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none
}