body {
  background: #1c1c1c;
  color: #eaeaea;
  font-family: Arial, sans-serif;
  margin: 0;
}

.container {
  width: 700px;
  margin: 40px auto;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 42px;
}

form {
  display: flex;
  gap: 10px;
}

input {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: #2a2a2a;
  color: white;
  font-size: 16px;
}

input:focus {
  outline: none;
}

button {
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: #3b82f6;
  color: white;
  cursor: pointer;
  font-size: 15px;
}

button:hover {
  opacity: 0.9;
}

#status {
  margin-top: 15px;
  opacity: 0.7;
  font-size: 14px;
}

#results {
  margin-top: 30px;
}

.result {
  margin-bottom: 32px;
}

.title {
  color: #8ab4ff;
  font-size: 21px;
  text-decoration: none;
  line-height: 1.3;
}

.title:hover {
  text-decoration: underline;
}

.url {
  color: #58d68d;
  margin-top: 5px;
  font-size: 14px;
  word-break: break-all;
}

.snippet {
  color: #d4d4d4;
  margin-top: 7px;
  line-height: 1.6;
  font-size: 15px;
}

.engine {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.65;
}

.more {
  width: 100%;
  margin-top: 20px;
}