* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  background: #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #111;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin: 10px 0 22px;
}

input {
  width: 100%;
  padding: 13px 15px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  margin-bottom: 16px;
}

input:focus {
  border-color: #111;
}

button {
  width: 100%;
  padding: 13px;
  background: #111;
  color: #fff;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

button:hover {
  background: #000;
}

#result {
  margin-top: 26px;
}

#result img {
  width: 220px;
  height: auto;
  margin-bottom: 14px;
}

#result a {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  color: #111;
  border: 1px solid #ddd;
  padding: 9px 16px;
  border-radius: 10px;
}

#result a:hover {
  background: #f1f1f1;
}

footer {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: #888;
}
