/* Entrance animation */
@keyframes boardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Chalkboard */
.board {
  position: relative;
  background: #234733;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  border: 14px solid #8b5a2b;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
  padding: 25px;
  width: 100%;
  max-width: 900px;
  animation: boardEntrance 0.8s ease-out;
  overflow: hidden;
}

/* Chalk doodles overlay */
.doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.doodles svg {
  width: 100%;
  height: 100%;
}

/* Sticky note */
.note {
  background: #fffdf5;
  padding: 30px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  z-index: 1;
}

.note:hover {
  transform: translateY(-5px);
}

/* Pin */
.pin {
  width: 24px;
  height: 24px;
  background: #ff4d4d;
  border-radius: 50%;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

/* Icons */
.icons {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 8px;
}

/* Heading */
.note h2 {
  text-align: center;
  margin: 10px 0;
  font-size: 28px;
  color: #2b2b2b;
}

/* Text */
.note p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 15px;
}

.meta-bottom {
    padding-top: 0 !important;
}

/* Responsive */
@media (max-width: 600px) {
  .note {
    padding: 20px;
  }

  .note h2 {
    font-size: 20px;
  }

  .icons {
    font-size: 22px;
  }

  .note p {
    font-size: 14px;
  }
}