body.page {
  background-color: #0d0d0f;
  color: #eee;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.card {
  background: #1a1a20;
  border: 1px solid #2a2a33;
  border-radius: 16px;
  padding: 2rem;
  margin: auto;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.user-pill {
  background: #2a2a33;
  border-radius: 10px;
  padding: .5rem .75rem;
  font-size: .8rem;
  text-align: right;
  line-height: 1.2;
}

.user-pill a.logout-link {
  color: #999;
  display: block;
  font-size: .7rem;
  text-decoration: none;
  margin-top: .25rem;
}

.user-pill a.logout-link:hover {
  color: #fff;
}

h1 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  line-height: 1.2;
}

.subtitle {
  font-size: .9rem;
  color: #aaa;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: .8rem;
  color: #ccc;
  margin-bottom: .4rem;
}

input[type="file"] {
  background: #0f0f12;
  border: 1px solid #3a3a44;
  border-radius: 8px;
  color: #fff;
  width: 100%;
  padding: .8rem .75rem;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.btn {
  background: linear-gradient(to right, #8a2be2, #4b0082);
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: auto;
}

.btn:hover {
  filter: brightness(1.1);
}

.note {
  font-size: .75rem;
  color: #666;
  line-height: 1.4;
  margin-top: 1.5rem;
}

.footer {
  color: #444;
  font-size: .7rem;
  text-align: center;
  padding: 2rem 0 1rem;
}
