// ...existing code...
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #ffe9f2 0%, #ffd1e4 45%, #ffb6d4 100%);
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c004d;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  letter-spacing: 2px;
  font-size: 2.2rem;
  margin: 0 0 20px;
  color: #b4005a;
  text-shadow: 0 2px 6px rgba(255, 180, 210, 0.6);
}

.container {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  padding: 40px 35px 50px;
  border-radius: 28px;
  box-shadow: 0 12px 35px -8px rgba(190, 0, 90, 0.25);
  max-width: 420px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.8s ease;
}

#heart {
  position: relative;
  width: 220px;
  height: 200px;
  background: linear-gradient(145deg,#ff5fa0,#ff337f);
  margin: 25px auto 10px;
  clip-path: path("M110,34 C110,2 0,2 0,66 C0,132 110,200 110,200 C110,200 220,132 220,66 C220,2 110,2 110,34 Z");
  box-shadow: 0 12px 25px -6px rgba(255, 70, 135, 0.55), inset 0 4px 8px rgba(255,255,255,0.35);
  overflow: hidden;
  transform: translateZ(0);
}

#heart::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 60%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

#fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg,#c00055 0%, #910040 70%);
  transition: height 0.9s cubic-bezier(.65,.05,.36,1);
  box-shadow: 0 -6px 12px -6px rgba(255,255,255,0.4), inset 0 2px 4px rgba(255,255,255,0.35);
  filter: saturate(1.15);
}

#percent {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2em;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 3px 10px rgba(0,0,0,0.25);
  letter-spacing: 1px;
}

#message {
  font-size: 1.05rem;
  min-height: 32px;
  margin: 18px 0 10px;
  color: #7a005f;
  font-weight: 500;
  animation: fadeMsg 0.5s ease;
}

#next-meet {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #5c004d;
}

button {
  border: none;
  padding: 14px 26px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg,#ff85b5,#ff5d98);
  cursor: pointer;
  color: #fff;
  letter-spacing: .5px;
  box-shadow: 0 8px 22px -6px rgba(255, 80, 140, 0.6);
  transition: transform .25s ease, box-shadow .3s ease, filter .3s;
  position: relative;
}

button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -8px rgba(255, 70, 135, 0.65);
  filter: brightness(1.08);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px -4px rgba(255, 70, 135, 0.55);
}

button:focus-visible {
  outline: 3px solid #ffb9d9;
  outline-offset: 3px;
}

@keyframes fadeIn {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes fadeMsg {
  from { opacity:0; transform:translateY(6px); }
  to { opacity:1; transform:translateY(0); }
}

@media (max-width: 520px) {
  h1 { font-size: 1.7rem; }
  #heart { width: 190px; height: 170px; }
  #percent { font-size: 1.9rem; }
  .container { padding: 32px 26px 42px; }
  button { width: 100%; }
}
/* Drag & drop styles for ranking list */
.drag-handle {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.drag-handle:active { cursor: grabbing; }
.dragging {
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  opacity: 0.95;
  transform: scale(1.02);
  border-radius: 8px;
}
.placeholder {
  background: rgba(0,0,0,0.03);
  border: 2px dashed rgba(0,0,0,0.06);
  min-height: 44px;
}
/* Prevent default touch scrolling when using handles */
.drag-handle { touch-action: none; }
// ...existing code...