.uu-wrap {
  --uu-ink: #f5f1e8;
  --uu-ink-soft: rgba(245,241,232,.62);
  --uu-gold: #c9a24b;
  --uu-panel: rgba(30,28,26,.55);
  --uu-field: rgba(255,255,255,.10);
  --uu-field-border: rgba(255,255,255,.18);
  --uu-danger: #e06b6b;

  max-width: 480px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--uu-ink);
}

.uu-card {
  background: var(--uu-panel);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 20px;
}

.uu-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--uu-ink);
}
.uu-title-sm { font-size: 24px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.14); }

.uu-subtitle {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--uu-ink-soft);
  margin: 0 0 22px;
}

.uu-field { margin-bottom: 18px; }
.uu-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--uu-ink);
}
.uu-req { color: var(--uu-danger); }

.uu-field input[type="text"],
.uu-field select,
.uu-field textarea {
  width: 100%;
  background: var(--uu-field);
  border: 1px solid var(--uu-field-border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--uu-ink);
  font-family: inherit;
}
.uu-field textarea { resize: vertical; min-height: 90px; }
.uu-field input::placeholder,
.uu-field textarea::placeholder { color: rgba(245,241,232,.45); }

.uu-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23f5f1e8' opacity='.7' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.uu-field select option { color: #1a1a1a; }

.uu-field input:focus,
.uu-field select:focus,
.uu-field textarea:focus {
  outline: none;
  border-color: var(--uu-gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,.20);
}

.uu-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.uu-submit {
  width: 100%;
  background: #1c1a18;
  color: #f5f1e8;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, opacity .15s;
}
.uu-submit:hover { background: #2a2724; }
.uu-submit:disabled { opacity: .6; cursor: not-allowed; }

.uu-status {
  margin: 12px 0 0;
  font-size: 13px;
  min-height: 18px;
}
.uu-status.uu-ok { color: #7fd19a; }
.uu-status.uu-err { color: var(--uu-danger); }

/* Wishes list */
.uu-wishes-list { display: flex; flex-direction: column; gap: 18px; }
.uu-loading, .uu-empty {
  color: var(--uu-ink-soft);
  font-size: 13.5px;
  text-align: center;
  padding: 20px 0;
}

.uu-wish { display: flex; gap: 12px; }
.uu-wish-new {
  animation: uu-highlight-in .6s ease-out;
}
@keyframes uu-highlight-in {
  0%   { opacity: 0; transform: translateY(-6px); background: rgba(201,162,75,.14); border-radius: 8px; }
  70%  { background: rgba(201,162,75,.14); border-radius: 8px; }
  100% { opacity: 1; transform: translateY(0); background: transparent; }
}
.uu-avatar {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #35322e;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--uu-ink);
}
.uu-wish-body { flex: 1; min-width: 0; }
.uu-wish-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.uu-wish-name { font-weight: 700; font-size: 14px; }
.uu-wish-status {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
}
.uu-wish-status.st-hadir { background: rgba(127,209,154,.15); color: #7fd19a; }
.uu-wish-status.st-tidak_hadir { background: rgba(224,107,107,.15); color: var(--uu-danger); }
.uu-wish-status.st-ragu { background: rgba(201,162,75,.15); color: var(--uu-gold); }

.uu-wish-date { font-size: 11.5px; color: var(--uu-ink-soft); width: 100%; margin-top: 1px; }
.uu-wish-msg { font-size: 13.5px; line-height: 1.55; margin: 6px 0 0; color: rgba(245,241,232,.9); word-wrap: break-word; }

.uu-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
.uu-page-btn {
  min-width: 30px;
  height: 30px;
  padding: 0 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--uu-ink);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.uu-page-btn.is-active { background: var(--uu-gold); border-color: var(--uu-gold); color: #1a1a1a; }
.uu-page-btn.is-next { border-radius: 15px; }
.uu-page-btn:disabled { opacity: .35; cursor: not-allowed; }

@media (max-width: 420px) {
  .uu-card { padding: 22px 18px; }
}
