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

body {
  font-family: 'Inter', sans-serif;
  background: #f0f4ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

h1 {
  font-size: 30px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}

h1 span { color: #1e40af; }

p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 500px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  padding: 5px 5px 5px 18px;
  box-shadow: 0 4px 20px rgba(30,64,175,.08);
  transition: border-color .2s;
}

form:focus-within { border-color: #1e40af; }

input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1e293b;
  background: transparent;
}

input::placeholder { color: #94a3b8; }

button {
  background: #1e40af;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

button:hover { background: #1d4ed8; }

.note { font-size: 12px; color: #94a3b8; margin-top: 12px; margin-bottom: 0; }
.note b { color: #1e40af; }

/* Hasil pencarian */
.results {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.result-info {
  font-size: 13px;
  color: #64748b;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 14px;
}

.result-info b { color: #1e293b; }

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s, transform .1s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(30,64,175,.12);
  border-color: #bfdbfe;
  transform: translateY(-1px);
}

.card-name { font-size: 15px; font-weight: 700; color: #1e40af; }
.card-desc { font-size: 12px; color: #64748b; margin-top: 3px; }
.arrow { color: #1e40af; font-size: 18px; opacity: .4; transition: opacity .2s; }
.card:hover .arrow { opacity: 1; }

.not-found {
  text-align: center;
  padding: 50px 20px;
  color: #64748b;
  font-size: 14px;
}

.not-found a {
  display: inline-block;
  margin-top: 14px;
  color: #1e40af;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

footer {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
