* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0d0d0d;
  color: #f2f2f2;
  font-family: system-ui, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 50px 10px;
  text-align: center;
}

main {
  max-width: 700px;
  width: 100%;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.tagline {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.info p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 14px 28px;
  border: 1px solid #f2f2f2;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.buttons a:hover {
  background: #f2f2f2;
  color: #0d0d0d;
}

.player-lookup {
  margin-top: 40px;
}

.player-lookup input {
  padding: 10px;
  width: 60%;
  max-width: 250px;
  border-radius: 6px;
  border: none;
  margin-right: 10px;
  background: #222;
  color: #f2f2f2;
}

.player-lookup input::placeholder {
  color: #888;
}

.player-lookup button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #55ff55;
  color: #0d0d0d;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.player-lookup button:hover {
  background: #33cc33;
}

.player-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.player-info img {
  border-radius: 50%;
  border: 2px solid #f2f2f2;
  margin-bottom: 10px;
}

.player-info p {
  font-weight: bold;
  color: #55ff55;
  font-size: 1.2rem;
}

#result {
  margin-top: 10px;
  font-weight: bold;
}

.tips {
  margin-top: 40px;
}

.tips h2 {
  margin-bottom: 15px;
  color: #ff5555;
}

.tips p {
  margin-bottom: 10px;
  font-weight: bold;
}

.tips button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #ff5555;
  color: #0d0d0d;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tips button:hover {
  background: #cc4444;
}

.footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: #666;
}
