/* 🎨 Colors Game - Responsive Container */
#object-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(100px, 14vw, 160px);        /* ✅ reduced overall size */
  height: clamp(100px, 14vw, 160px);  /* ✅ keeps square proportion */
  margin: 0 auto 20px auto;
  padding: 0;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* ✅ Color block fills container */
#object-container .color-block {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}
