/* Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1f1f1f, #121212);
  color: #f1f1f1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 600px;
  background: #1e1e1e;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.logo {
  width: 64px;
  margin-bottom: 10px;
}

header {
  text-align: center;
  margin-bottom: 25px;
}

.subtitle {
  font-size: 14px;
  color: #bbb;
  margin-top: 5px;
}

#currentTarget {
  font-size: 14px;
  color: #80cbc4;
  text-align: center;
  margin-top: 10px;
}

.search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

input[type="text"] {
  flex: 1 1 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #2c2c2c;
  color: white;
}

input[type="text"]::placeholder {
  color: #888;
}

button {
  flex: 1 1 100%;
  padding: 12px;
  background-color: #03a9f4;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #0288d1;
}

.results {
  margin-top: 10px;
}

.results h2 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffcc80;
}

.results a {
  display: block;
  background: #2b2b2b;
  padding: 10px;
  margin: 6px 0;
  border-radius: 6px;
  text-decoration: none;
  color: #03a9f4;
  transition: background 0.3s;
  word-break: break-all;
}

.results a:hover {
  background: #3a3a3a;
}

/* Responsive Mobile */
@media screen and (max-width: 480px) {
  .container {
    padding: 20px;
  }

  .logo {
    width: 48px;
  }

  button, input {
    font-size: 15px;
  }

  .results h2 {
    font-size: 16px;
  }
}
