/* ---------- JOB FINDER (HUNT) PLATFORM ---------- */
#hunt-app {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hunt-header {
  height: 56px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
}

.hunt-back-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.15s ease;
}
.hunt-back-btn:hover {
  background: var(--surface2);
  color: var(--text);
}

.hunt-header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.hunt-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px 80px;
}

.hunt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.hunt-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hunt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* On mobile, stack columns */
@media (max-width: 600px) {
  .hunt-form-grid {
    grid-template-columns: 1fr;
  }
}

.hunt-job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.hunt-job-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(45, 107, 228, 0.08);
}

.hunt-job-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.hunt-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 10px;
}

.hunt-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text2);
}

.hunt-job-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hunt-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.hunt-tag {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
}

.hunt-job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

.hunt-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.hunt-apply-link:hover {
  opacity: 0.9;
}

.hunt-match-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
}
.hunt-match-high { background: var(--green-soft); color: var(--green); }
.hunt-match-mid { background: var(--orange-soft); color: var(--orange); }
.hunt-match-low { background: var(--red-soft); color: var(--red); }
