body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: #111;
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.vibe-section {
  margin: 2rem 0;
}

#vibe-button {
  background-color: #000;
  color: #fff;
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#vibe-button:hover {
  background-color: #333;
}

#vibe-count {
  margin-top: 1rem;
  font-weight: bold;
  color: #444;
}

.links a {
  display: inline-block;
  margin-top: 2rem;
  text-decoration: none;
  color: #0066cc;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

#vibe-button.vibed {
  background-color: #ff4d6d;
  color: #fff;
  font-size: 1.5rem;
  border: 2px solid white;
}