.charm {
  background: var(--card, #0b1220);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease;
}

/* Subtle hover variant */
.charm:hover {
  background: #0d1526; /* small shift: subtle, elegant */
  border-color: rgba(255, 255, 255, 0.10);
}

.charm h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  scroll-margin-top: 90px;
  color: var(--accent, #9f7aea);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.charm strong {
  color: var(--muted, #9aa4b2);
  font-weight: 600;
}

.charm p {
  margin: 0.4rem 0;
  line-height: 1.5;
  color: #dbe0ea;
}

/* NEW — bullet lists inside charm blocks */
.charm ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  padding: 0;
  list-style: disc;
  color: var(--muted, #9aa4b2); /* muted bullets */
}

.charm ul li {
  color: #dbe0ea; /* bright text to match <p> */
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

.charm .cite {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted, #9aa4b2);
  text-align: right;
  opacity: 0.85;
}

h2 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  color: var(--accent, #9f7aea);
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(159, 122, 234, 0.4);
}

@media (max-width: 600px) {
  .charm {
    padding: 1rem;
  }

  .charm h3 {
    font-size: 1.15rem;
  }
}
