body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #121212;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.container {
  margin-top: 2%;  
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.login-section {
  margin-bottom: 2rem;
  text-align: center;
}

.login-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  color: white;
}

.login-btn img {
  width: 24px;
  height: 24px;
}

.spotify {
  background: #1DB954;
}

.spotify:hover {
  background: #17a44c;
}

.youtube {
  background: #FF0000;
}

.youtube:hover {
  background: #cc0000;
}

.link-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.link-section input {
  padding: 0.7rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  width: 100%;
}

.link-section button {
  padding: 0.7rem;
  border: none;
  border-radius: 8px;
  background: #1DB954;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.link-section button:hover {
  background: #17a44c;
}

.result {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
  word-break: break-word;
}
