/* index.css */
/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #202124;
  color: #e8eaed;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { color: #8ab4f8; text-decoration: none; }
a:hover { text-decoration: underline; }
/* Container */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
/* Logo & Tagline */
.logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.tagline {
  font-size: 1rem;
  color: #9aa0a6;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 400px;
}
/* Search Box */
.search-box {
  width: 100%;
  max-width: 600px;
  display: flex;
  border: 1px solid #5f6368;
  border-radius: 24px;
  padding: 0.5rem 1rem;
  background-color: #303134;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  background-color: transparent;
  color: #e8eaed;
}
.search-box input::placeholder { color: #9aa0a6; }
.search-box button {
  border: none;
  background-color: #8ab4f8;
  color: #202124;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}
.search-box button:hover {
  background-color: #669df6;
}
/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #5f6368;
  border-top: 1px solid #5f6368;
}
footer a:hover { color: #8ab4f8; }
