body {
  background: #0e1012;
  color: white;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 2rem;
}

h1 {
  font-family: 'Beaufort for LOL', serif;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: gold;
  letter-spacing: 1px;
}

form {
  margin-bottom: 2rem;
}

select, input, button {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  margin: 0.5rem;
  background: #1f1f1f;
  color: white;
}

button {
  background: #10a37f;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0e8b6a;
}

.ia-analysis {
  background: #1f1f1f;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: left;
}

.player-summary {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  background: #1f2125;
  padding: 1rem;
  border-radius: 12px;
  text-align: left;
}

.rank-icon {
  width: 64px;
  margin-right: 1rem;
}

.match-card {
  background: #1e1f23;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  border-left: 5px solid #333;
}

.match-card.win {
  border-left-color: #10b981;
}

.match-card.loss {
  border-left-color: #ef4444;
}

.champ-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.match-info {
  margin-left: 1rem;
  text-align: left;
}


.ia-analysis {
  background: linear-gradient(to right, #1c1c1f, #202225);
  border: 1px solid #10a37f;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px #10a37f55;
  margin-top: 2rem;
  color: #f0f0f0;
}

.ia-header {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #10a37f;
  border-bottom: 1px solid #10a37f44;
  padding-bottom: 0.5rem;
}

.ia-body {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

