body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

.card {
  width: min(600px, 92vw);
  min-height: 400px;
  height: auto;
  background: linear-gradient(160deg, rgba(12,28,55,0.9), rgba(22,54,92,0.9)), url("assets/bg.png") center/cover;
  color: white;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  box-sizing: border-box;
}

.photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 12px 0 16px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  overflow: hidden;
}

.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decoration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hidden {
  display: none;
}

.error {
  color: #b00020;
  font-size: 1.25rem;
  text-align: center;
  margin-top: 1rem;
}
