* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  background: #111;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #ffffff;
  color: #111;
  width: 340px;
  height: 560px;
  max-width: 90vw;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: column;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  color: #777;
  margin: 0 0 20px 0;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter {
  padding: 6px 12px;
  background: #f2f2f2;
  border: none;
  border-radius: 14px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.filter:hover {
  background: #e6e6e6;
}

.filter.active {
  background: #111;
  color: #fff;
}

.affirmation {
  font-size: 1.85rem;
  line-height: 1.35;
  font-weight: 500;
  margin: 0;

  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

.next-btn {
  align-self: flex-start;
  margin-top: 24px;
  padding: 10px 22px;
  font-size: 0.85rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.next-btn:hover {
  transform: scale(1.05);
}
