/* Ortak kutu stili */
#box1, #box2, #box3, #box4 {
  position: absolute; /* üst üste binmeleri için */
  width: 90%;          /* isteğe göre ayarla */
  left: 50%;
  transform: translateX(-50%);
  transition: top 0.2s ease;
}

/* Başlangıç top değerleri ve z-index */
#box1 { top: 0px; z-index: 1; }
#box2 { top: 40px; z-index: 2; }
#box3 { top: 80px; z-index: 3; }
#box4 { top: 120px; z-index: 4; }