* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffe4ec 0%, #ffd9e5 100%);
  font-family: 'Segoe UI', 'Quicksand', system-ui, -apple-system, sans-serif;
  padding: 1.5rem;
  margin: 0;
}

/* main card */
.core-card {
  max-width: 700px;
  width: 100%;
  background: rgba(255, 245, 248, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 64px 24px 64px 24px;
  box-shadow: 
    0 20px 40px -10px rgba(235, 120, 150, 0.25),
    0 8px 20px rgba(255, 180, 200, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.7);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.25s ease;
  border: 2px solid rgba(255, 220, 230, 0.6);
}

/* sparkle decoration */
.core-card::before {
  content: "✦ ✧ ✦";
  display: block;
  font-size: 1.2rem;
  letter-spacing: 6px;
  color: #f8a5b8;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

/* main heading */
h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #a14a5c;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0.25rem 0 0.5rem 0;
  text-shadow: 0 4px 12px rgba(255, 160, 180, 0.25);
  word-break: break-word;
}

/* accent underline */
.hazel-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fba9b9, #fbc4d0, #fba9b9);
  border-radius: 20px;
  margin: 0.5rem auto 1.2rem auto;
  box-shadow: 0 2px 8px rgba(255, 140, 170, 0.3);
}

/* paragraph */
p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #7a4b59;
  background: rgba(255, 235, 240, 0.5);
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  display: inline-block;
  backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.8);
  margin: 1rem 0 0.8rem 0;
  border: 1px solid #ffdae3;
  line-height: 1.5;
}

/* small details */
.charm {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  color: #b06a7a;
  font-size: 1rem;
  font-weight: 300;
}

.charm span {
  background: rgba(255, 215, 225, 0.5);
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 200, 215, 0.6);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.charm i {
  font-style: normal;
  font-size: 1.1rem;
}

/* construction note */
.construction-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #b88290;
  background: rgba(255, 220, 230, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  display: inline-block;
  backdrop-filter: blur(2px);
  border: 1px dashed #f7bacb;
  transition: 0.2s;
}

.construction-note:hover {
  background: rgba(255, 210, 220, 0.5);
  border-color: #f59fb3;
  color: #9f5b6d;
}